For example, something like this query:
GET /_search
{
"query": {
"fuzzy" : {
"user" : {
"value": "ki",
"boost": 1.0,
"fuzziness": 2,
"prefix_length": 0,
"max_expansions": 100
}
}
}
}
Sorry for the issue, I've been trying and I can't seem to get it running, nor can I find any examples.
I managed to figure it out, this might be of help to someone else:
Search().query(Q({"fuzzy": {
"user": {
"value": "ki",
"boost": 1.0,
"fuzziness": 2,
"prefix_length": 0,
"max_expansions": 100
}
}
}))
Most helpful comment
I managed to figure it out, this might be of help to someone else: