GET /restaurants/_search { "query": { "bool": { "must": [ { "match": { "name": "pizza" } } ], "should": [ { "match": { "ratingText.keyword": "Very Good" } }, { "match": { "ratingText.keyword": "Excellent" } } ], "must_not": [ { "match": { "name": "pasta" } } ] } } }