Skip to content

Instantly share code, notes, and snippets.

@lighta
Created April 16, 2015 14:55
Show Gist options
  • Save lighta/b0fa8ab7c393b235856c to your computer and use it in GitHub Desktop.
Save lighta/b0fa8ab7c393b235856c to your computer and use it in GitHub Desktop.
es_nested_query
{
"_source": [
"name",
"attribs"
],
"query": {
"nested": {
"path": "attribs",
"query": {
"bool": {
"must": [
{
"term": {
"attribs.label": "Sport"
}
},
{
"term": {
"attribs.color": "Basket"
}
}
]
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment