Search for facet values

Searches for values of a specified facet attribute on the composition’s main source’s index.

  • 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
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import "github.com/algolia/algoliasearch-client-go/v4/algolia/composition"

client, err := composition.NewClient("ALGOLIA_APPLICATION_ID", "ALGOLIA_API_KEY")
if err != nil {
  // The client can fail to initialize if you pass an invalid parameter.
  panic(err)
}

response, err := client.SearchForFacetValues(client.NewApiSearchForFacetValuesRequest(
  "foo", "brand").WithSearchForFacetValuesRequest(
  composition.NewEmptySearchForFacetValuesRequest().SetParams(
    composition.NewEmptySearchForFacetValuesParams().SetMaxFacetHits(10))))
if err != nil {
  // handle the eventual error
  panic(err)
}
Did you find this page helpful?