I'm trying to add multiple suggesters to an Azure Search index, but receive this error response:
An index cannot have more than one suggester with searchMode='analyzingInfixMatching'
The property on the index is called suggesters
and is of type array
.
The documentation states:
The only mode currently supported is analyzingInfixMatching
Is the api defined to support future capabilities? Or am I overlooking an option that will enable me to add multiple suggesters?
And to understand why: I have fields in my index for different languages. I would like a suggester only to include the field for the language the current user has specified. With the current implementation I can only provide suggestions or autocomplete based on all available languages.