Skip to content

Instantly share code, notes, and snippets.

@itayw
Created July 31, 2015 18:01
Show Gist options
  • Save itayw/6ecea8ec46454fc0e5f8 to your computer and use it in GitHub Desktop.
Save itayw/6ecea8ec46454fc0e5f8 to your computer and use it in GitHub Desktop.
graph query dsl
{
"index": "echo-*",
"query": {
"filtered": {
"query": {
"match_all": {}
},
"filter": {
"bool": {
"must": [
{
"term": {
"echo_isPrivateSourceAddress": false
}
},
{
"term": {
"echo_isPrivateDestinationAddress": false
}
}
]
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment