Elasticsearch - Basic Search Queries
Given this Elasticsearch query:
What does the
{ "query": { "match": { "title": { "query": "quick brown fox", "operator": "and" } } } }What does the
operator": "and" do in this match query?