Skip to content

Instantly share code, notes, and snippets.

@davidemoro
Created May 8, 2015 14:02
Show Gist options
  • Save davidemoro/431aebd16c1ba143a90c to your computer and use it in GitHub Desktop.
Save davidemoro/431aebd16c1ba143a90c to your computer and use it in GitHub Desktop.
elasticsearch query
POST /my_index/_search
{
"query" : {
"filtered": {
"query": {
"query_string": {
"query": "public"
}
},
"filter": {
"term": {
"state": "public"
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment