Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save YarekTyshchenko/4bd8e0bccc8ca694c855 to your computer and use it in GitHub Desktop.

Select an option

Save YarekTyshchenko/4bd8e0bccc8ca694c855 to your computer and use it in GitHub Desktop.
curl -XGET http://localhost:9200/test/prodtest/_search -d '
{
"query": {
"filtered": {
"filter": {
"nested": {
"path": "productsOptionValues",
"filter": {
"or": [{
"and": [{
"term": {
"productsOptionValues.productOption": "weight"
}
}, {
"term": {
"productsOptionValues.value": "2,9 kg"
}
}]
}, {
"and": [{
"and": [{
"term": {
"productsOptionValues.productOption": "resolution"
}
}, {
"term": {
"productsOptionValues.value": "1600x900"
}
}]
}, {
"and": [{
"term": {
"productsOptionValues.productOption": "resolution"
}
}, {
"term": {
"productsOptionValues.value": "1920x1080"
}
}]
}]
}]
}
}
}
}
}
}
'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment