Skip to main content

Usage

Example

Current API clients

var response = await client.SetSettingsAsync(
  "INDEX_NAME",
  new IndexSettings { MaxFacetHits = 10 }
);
index.SearchForFacetValue(new SearchForFacetRequest
{
    FacetName = "category",
    FacetQuery = "phone",
    SearchParameters = new Query("query") { MaxFacetHits = 5 }
});
Last modified on March 23, 2026