Sep 20, 2024
Search for facet values
Searches for values of a specified facet attribute.
- By default, facet values are sorted by decreasing count.
You can adjust this with the
sortFacetValueBy
parameter. - Searching for facet values doesn’t work if you have more than 65 searchable facets and searchable attributes combined.
Usage
Required ACL:
search
Copy
1
2
3
4
5
import Search
let client = try SearchClient(appID: "ALGOLIA_APPLICATION_ID", apiKey: "ALGOLIA_API_KEY")
let response = try await client.searchForFacetValues(indexName: "ALGOLIA_INDEX_NAME", facetName: "facetName")
Did you find this page helpful?