How to know the max_expansions terms in fuzzy query

Hi,
Is there a way to know the expanded terms according to the Levenstiens Distance ?

For Eg: If my input is 'noël'. What would be the terms generated while querying if the fuzziness is set to AUTO in a match query

{
"match": {
"my_field": {
"query": "noël",
"operator": "OR",
"fuzziness": "AUTO",
"prefix_length": 0,
"max_expansions": 50,
"fuzzy_transpositions": false,
"lenient": false,
"zero_terms_query": "NONE",
"auto_generate_synonyms_phrase_query": true
}
}
}

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.