Skip to content

Instantly share code, notes, and snippets.

@yinchunxiang
Created June 30, 2014 09:49
Show Gist options
  • Save yinchunxiang/5e4345c81f0766a5f561 to your computer and use it in GitHub Desktop.
Save yinchunxiang/5e4345c81f0766a5f561 to your computer and use it in GitHub Desktop.
curl -XPOST 'localhost:9200/bank/_search?pretty' -d '
{
"query": {
"filtered": {
"query": { "match_all": {} },
"filter": {
"range": {
"balance": {
"gte": 20000,
"lte": 30000
}
}
}
}
}
}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment