Azure Search Suggester API doesn't provide count for each of the suggesters text. How can it be achieved through Suggester API call?

Ganapathi Mahadevan 0 Reputation points
2023-10-18T15:02:55.8433333+00:00

For example if we were to try Azure search API like below

https://{domain}/indexes/{index-name}/docs/suggest?search={searchtext}&suggesterName=suggestions&fuzzy=true&highlights=true&api-version={api-version}&$top=10&$filter=(language_1 eq '{language}') and (latestversion_1 eq true)

The sample response probably looks like below

[
  {
    "@search.text": "some text",
    "azureuniqueid": "some guid"
  },
  {
    "@search.text": "some text",
    "azureuniqueid": "some guid"
  }
]
Azure AI Search
Azure AI Search
An Azure search service with built-in artificial intelligence capabilities that enrich information to help identify and explore relevant content at scale.
865 questions
{count} votes