Exact Search on multiple wildcard-fields

This works on 5.x:

GET /index/_search
{
  "query": {
    "match": {
      "text.keyword": "basket of apples"
    }
  }
}