This query is working well for me but I wondered if it's possible to use wildcards on the search term?
{
"query": {
"multi_match" : {
"query": "Jones Mein",
"fields": [ "surname", "person_number" ],
"fuzziness": "AUTO"
}
}
}
i.e.
{
"query": {
"multi_match" : {
"query": "Jones Mei*",
"fields": [ "surname", "person_number" ],
"fuzziness": "AUTO"
}
}
}