How to do a match_phrase query on all searchable fields instead of on a single field?
I do see in the documentation as mentioned below where search can be done on only specific field.
GET /_search
{
"query": {
"match_phrase": {
"message": "this is a test"
}
}
}
https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-match-query-phrase.html
Thanks,
M'Jay