I need to configure Open-search server to analyse the query in such a way that any permutation of words in the query are matched, it return the document.
For example, In indexation of a field I have a phrase "knee pain". Now if my query is like "how to remove pain in human knee". I want that this query output the document having "knee pain" in indexation field.
Hence my requirement to break the query string as "remove","pain","human","knee","remove pain",""remove knee","remove human","pain knee","human knee","knee pain","human pain",etc.
So that it matches "knee pain". Is there any tokenizer or filter which can help me to achieve this.