I'm trying to run "fuzzy" query_string search, any ideas what might be wrong? Fuzziness parameter itself is valid for query_string and no exception is thrown.
Finds one result:
{
"query": {
"bool": {
"should": {
"query_string": {
"default_field": "title",
"query": "index"
}
}
}
}
}
Cannot find anything:
{
"query": {
"bool": {
"should": {
"query_string": {
"default_field": "title",
"query": "indexa",
"fuzziness": 9000
}
}
}
}
}