Created
June 25, 2018 12:02
-
-
Save anam-hossain/5b0a3731b28d80cbd02b17aa9de154e0 to your computer and use it in GitHub Desktop.
Filter query example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"query" : { | |
"bool" : { | |
"should": [{ | |
"match": { | |
"make": "Audi" | |
} | |
}, { | |
"match": { | |
"make": "Kia" | |
} | |
}], | |
"filter" : { | |
"term": { | |
"ancap_rating": "5" | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment