Suggests documents in the Azure Search index that match the given partial query text.
Supports noop? false
Parameters
top(Optional[String[1]])
— The number of suggestions to retrieve. The value must be a number between 1 and 100. The default is 5.
search(Optional[String[1]])
— The search text to use to suggest documents. Must be at least 1 character, and no more than 100 characters.
highlight_pre_tag(Optional[String[1]])
— A string tag that is prepended to hit highlights. Must be set with highlightPostTag. If omitted, hit highlighting of suggestions is disabled.
select(Optional[String[1]])
— The list of fields to retrieve. If unspecified, only the key field will be included in the results.
api_version(Optional[String[1]])
— Client Api Version.
client_request_id(Optional[String[1]])
— The tracking ID sent with the request to help with debugging.
searchcoverage(Optional[String[1]])
— A value indicating the percentage of the index that was included in the query, or null if minimumCoverage was not set in the request.
suggester_name(Optional[String[1]])
— The name of the suggester as specified in the suggesters collection that's part of the index definition.
fuzzy(Optional[String[1]])
— A value indicating whether to use fuzzy matching for the suggestions query. Default is false. When set to true, the query will find terms even if there's a substituted or missing character in the search text. While this provides a better experience in some scenarios, it comes at a performance cost as fuzzy suggestions queries are slower and consume more resources.
orderby(Optional[String[1]])
— The list of OData $orderby expressions by which to sort the results. Each expression can be either a field name or a call to either the geo.distance() or the search.score() functions. Each expression can be followed by asc to indicate ascending, or desc to indicate descending. The default is ascending order. Ties will be broken by the match scores of documents. If no $orderby is specified, the default sort order is descending by document match score. There can be at most 32 $orderby clauses.
search_fields(Optional[String[1]])
— The list of field names to search for the specified search text. Target fields must be included in the specified suggester.
filter(Optional[String[1]])
— An OData expression that filters the documents considered for suggestions.
highlight_post_tag(Optional[String[1]])
— A string tag that is appended to hit highlights. Must be set with highlightPreTag. If omitted, hit highlighting of suggestions is disabled.
minimum_coverage(Optional[String[1]])
— A number between 0 and 100 indicating the percentage of the index that must be covered by a suggestions query in order for the query to be reported as a success. This parameter can be useful for ensuring search availability even for services with only one replica. The default is 80.
value(Optional[String[1]])
— The sequence of results returned by the query.