Hello *, im trying to make an index to support spelling errors/fuzzy matching, ive indexed my document titles with NGramFilterFactory minGramSize=2 maxGramSize=3, using the analysis page i can see the common grams match between the indexed value and the query value, however when i try to do a query for it ex. title_ngram:(family) the debug output says the query is converted to a phrase query "f a m i l y fa am mi il ly fam ami mil ily", if this is the expected behavior is there a way to override it?
or should i scrap this approach and use title:(family) and boost on strdist("family", title, ngram, 3) ?