I have index and data described here, and also I have set analyzer to stop analyzer. That works fine, because when I try simple search like POST https://serverURL/_search?pretty=true
{
"query": {
"query_string": {
"default_field": "title",
"query": "Rebel the without" }
}
}
, server really returns
"title": "Rebel Without a Cause"
as result.
But, when I try to use fuzzy search
{
"query": {
"fuzzy": {
"title": {
"value": "Rebel the without"
}
}
}
}
, the result is empty. What is exactly going on here, does fuzzy search somehow disable analyzer ?