algolia / algolia/algoliasearch-helper-flutter
Can the 'final String? status' field be filtered to exclude null values?
Open
- Dominant language
- Dart
- Stars
- 27
- Forks
- 21
- Avg merge
- 1h 19m
- Merged PRs (30d)
- 1
Description
Can the 'final String? status' field be filtered to exclude null values?
The 'status' field can have the values 'null', 'inProgress', 'pending', and 'approved'.
Ex>
```
var filter = FilterState();
filter.add(_statusFilterGroup, [Filter.facet('status', !=null )]); // <<<
```
Contributor guide
Research direction
No file or test is named. Start by locating the Filter.facet and FilterState entry points, then inspect the existing facet-filter tests to determine how null status values are represented. Done means supporting the requested status != null filter and covering the behavior with a regression test.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- dart, flutter
- Domain
- search
- Issue type
- Feature
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 35/100