I need to make a full text query to match phrase with several words, with defined slop. But text may have misspellings, hence I need fuzziness as well.
- I may use
match_phrasewithslop, then I losefuzziness - I may use
matchwithfuzzinesswithoperator: "and", then I loseslop - I may use
span_nearthen I lose full text query, it would be term query
Do you have any suggestions to perform fuzzy match phrase?