algolia / algolia/algoliasearch-helper-flutter
filterOnly ?
Open
question
- Dominant language
- Dart
- Stars
- 27
- Forks
- 21
- Avg merge
- 1h 19m
- Merged PRs (30d)
- 1
Description
**Cloud functions**
- IndexName: company
- filterOnly(status)
- filterOnly(published)
`attributesForFaceting: [
‘filterOnly(status)’,
‘filterOnly(published)’,
], `
**client:**
```
HitsSearcher hitsSearcher = HitsSearcher.create(
applicationID: AlgoliaCredentials.applicationID,
apiKey: AlgoliaCredentials.apiKey,
state: const SearchState(
indexName: 'company',
facetFilters: ['published:true'],
//query: '',
));
```
I want to create a page that has status ‘processing’ and published ‘true’. How do I do that?
Contributor guide
Assessment
This issue has not been assessed yet.