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