Skip to content

Instantly share code, notes, and snippets.

@jkva
Created December 5, 2011 19:35
Show Gist options
  • Save jkva/1434930 to your computer and use it in GitHub Desktop.
Save jkva/1434930 to your computer and use it in GitHub Desktop.
es query
curl -XGET 'http://127.0.0.1:9200/brandweer/video/_search?pretty=1' -d '
{
"sort" : [
{
"published" : "desc"
}
],
"query" : {
"text" : {
"status" : "active"
}
},
"from" : 0,
"size" : "10"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment