Skip to content

Instantly share code, notes, and snippets.

@anam-hossain
Created June 25, 2018 12:02
Show Gist options
  • Save anam-hossain/5b0a3731b28d80cbd02b17aa9de154e0 to your computer and use it in GitHub Desktop.
Save anam-hossain/5b0a3731b28d80cbd02b17aa9de154e0 to your computer and use it in GitHub Desktop.
Filter query example
{
"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