I have a problem I'm not quite sure how to solve in elasticsearch.
I have a bunch of documents that have an array of names in them
{
...
"names":["name nameson", "example exampleson"],
...
}
And I want to have a search query where I only have a name as an input. For example "name testson".
If the array contains at least one name that is above 80% similar to the input name(according to some algoritm), then it should be returned by the query.
Is this possible in elasticsearch?