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
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"
}
]
Sign in to answer