GET product/_search?size=1000 { "query": { "bool": { "filter": [ { "nested": { "path": "attrs", "query": { "bool": { "must": [ { "term": { "attrs.attrId": "15" } } ], "filter": { "terms": { "attrs.attrValue": ["联发科", "麒麟", "A17"] } } } } } } ] } }, "sort": [ { "skuPrice": { "order": "desc" } } ] }
GET product/_search?size=1000
{
"query": {
"bool": {
"filter": [
{
"nested": {
"path": "attrs",
"query": {
"bool": {
"must": [
{
"term": {
"attrs.attrId": "15"
}
}
],
"filter": {
"terms": {
"attrs.attrValue": ["联发科", "麒麟", "A17"]
}
}
}
}
}
}
]
}
},
"sort": [
{
"skuPrice": {
"order": "desc"
}
}
]
}
GET product/_search?size=1000 { "query": { "bool": { "must": [ { "term": { "attrs.attrId": { "value": "15" } } } ], "filter": [ { "range": { "skuPrice": { "gte": 0, "lte": 15000 } } }, { "nested": { "path": "attrs", "query": { "bool": { "filter": { "terms": { "attrs.attrValue": [ "联发科", "麒麟", "A17" ] } } } } } } ] } }, "sort": [ { "skuPrice": { "order": "desc" } } ] }
GET product/_search?size=1000
{
"query": {
"bool": {
"must": [
{
"term": {
"attrs.attrId": {
"value": "15"
}
}
}
],
"filter": [
{
"range": {
"skuPrice": {
"gte": 0,
"lte": 15000
}
}
},
{
"nested": {
"path": "attrs",
"query": {
"bool": {
"filter": {
"terms": {
"attrs.attrValue": [
"联发科",
"麒麟",
"A17"
]
}
}
}
}
}
}
]
}
},
"sort": [
{
"skuPrice": {
"order": "desc"
}
}
]
}