I do not get any result if I do a filter term search on a field which holds text with diacritics. But If I do a filter term search on the same field but searching for a text that does not contain any Diacritics/Accents, I do get results.
For instance if I have the following document:
{
name: "funke"
}
and I do a search
"filter": {
"term": {
"name" : "funke"
}
}
I do get a result. But if I have the following document
{
name: "Bọ́lánlé" // note the value contains accents
}
and I search thus:
"filter": {
"term": {
"name" : "Bọ́lánlé"
}
}
I get zero hits!
What do I need to do to make my filter term work with texts with special characters?