I'm using the elastic4s
client for my scala elastic search and trying to search on multiple fields
something like:
"query": { "match": { "_all": { "query": "SomeTermToMatch", "operator": "and" } } }
I've tried:
query { '_all', query(searchString)).operator(MatchQueryBuilder.Operator.AND) }
But it didn't return the desired result as native es does.
Does someone know how can I achive that?