I am using match_like_this
{
"size":30,
"query":{
"more_like_this":{
"fields":["Name","ZipCode"],
"like":[
{
"_index" : "myindex",
"_id" : "267AHVJDJSK2673"
}],
"minimum_should_match": 1,
"min_term_freq":1,
"min_doc_freq": 1
}
}
}
I have term with a typo that is not returning in the search, how can I add fuzziness to my search ?
my like has a term
technologies
I have 1 more document with name tecnologies (h missing)
but it is not returniong in the results
does more like this support fuzziness ?
Thanks
Ravi