“name”==”a” and (“city” == “b” or “city” == “c”)

    1. GET /gravel-spider-data-*/_search
    2. {
    3. "query": {
    4. "bool": {
    5. "must": [{
    6. "match_phrase": {
    7. "name": "a"
    8. }
    9. }],
    10. "should": [{
    11. "match_phrase": {
    12. "city": "b"
    13. }
    14. },
    15. {
    16. "match_phrase": {
    17. "city": "c"
    18. }
    19. }],
    20. "minimum_should_match": 1
    21. }
    22. },
    23. "size": 5
    24. }