Hello team,
I have created own index and try to execute simple search request with fuziness like I pointed below.
But in search results I see less items then expected to receive. The question is: which function i can use to see how my initial query was analyzed/transformed? Which final request (agter fuziness) is send to find items in my index?
{
"query": {
"bool": {
"must": [
{
"multi_match": {
"query": "iphne headphnes",
"operator": "and",
"fuzziness": "AUTO",
"fields": [
"name",
"*_name",
"search_*"
]
}
}
]
}
},
"size": 100
}