Hi @Ad_Kerremans1 , can you share a copy of your index definition and a sample document + searchString that you are trying to match? Generally, the autocomplete field mapping type and operator are a good fit for searching partial words. However, if searchString exceeds the maxGram configured in the search index, this might lead to unexpected documents being returned in your search. When using autocomplete, it’s best to choose a maxGram which will support the expected length of searchString . It’s important to note that configuring a large maxGram (e.g… 15+) can dramatically increase the size of your index, so it’s important to select a maxGram which balances your search requirements and storage constraints.
Alternatively, if you want to match complete words, you can try the text operator or equals for an exact string match.
BTW, the Search Playground is a great tool to help test different indexes and queries.