Skip to content

Instantly share code, notes, and snippets.

@kimchy
Created May 2, 2012 18:22
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/2578931 to your computer and use it in GitHub Desktop.
Save kimchy/2578931 to your computer and use it in GitHub Desktop.
curl -s localhost:9200/_search -d '
{
"query" : {
"filtered" : {
"query": {
"query_string": {
"query": "search_string:a"
}
},
"filter": {
"range": {
"counter": {
"from": 10
}
}
},
}
}
}
'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment