Skip to content

Instantly share code, notes, and snippets.

@kimchy
Created January 19, 2012 23:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kimchy/1643631 to your computer and use it in GitHub Desktop.
Save kimchy/1643631 to your computer and use it in GitHub Desktop.
curl localhost:9200/_search -d '{
"query" : {
"filtered" : {
"query" : {
"term" : { "tag" : "wow" }
},
"filter" : {
"range" : {
"age" : { "from" : 10, "to" : 20 }
}
}
}
}
}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment