Closed ashutoshrishi closed 5 years ago
I need to build a match query with fuzziness set to AUTO. If I am not wrong, a "fuzziness" option can be given on most query types:
fuzziness
AUTO
{ "match": { "content": { "zero_terms_query": "none", "operator": "or", "query": "random query", "fuzziness": "AUTO", "boost": 1 } } }
MatchQuery
Fuzziness
Is there any way around this?
I have tried to fix this in #241. Could someone have a look?
I need to build a match query with
fuzziness
set toAUTO
. If I am not wrong, a "fuzziness" option can be given on most query types:MatchQuery
constructor does not take "fuzziness"Fuzziness
newtype just takes a Double, so "AUTO" is not possible.Is there any way around this?