Nested type language french, can't search word have not accent

I have issue from nested type when i am searching with word "Cuisinière" then it's working and have result but if i remove accent in word (Cuisiniere). That don't result

My query below:

Blockquote
{
"query": {
"nested": {
"path": "abc",
"query": {
"multi_match": {
"query": "Cuisiniere",
"type": "best_fields",
"fields": [
"abc.title"
],
"analyzer": "synonym" // if i add synonym then both 2 word "Cuisinière" , "Cuisiniere" not work
}
}
}
}
}
Blockquote

My analyzer have option as asciifolding so i think it's parse from Cuisinière t to Cuisiniere

Thanks

please provide a full reproduction, including index creation, analyzer setup and sample documents - otherwise it will be much harder to reproduce your problem. Also specifying the Elasticsearch version helps a lot.

Thank you!

I found issue from my index so i thank you.

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