Here is the query
{
  "query": {
    "match": {
      "english": {
        "query" : "all this", 
        "operator": "and"
      }
    }
  }
}
I expect the result contains "both" all and "this".
But the result can contain only "all", like this
"hits": [
      {
        "_index": "words_v1",
        "_type": "words",
        "_id": "AVv5tQ4oIOyYfPowNbTQ",
        "_score": 4.9961786,
        "_source": {
          "english": "It's all I can do"
          "sourceTitle": "Arrival"
        }
      }
Any idea why the operator "and" does not work?