What is Problem with Multiple Range Filter?

GET bliad4/_search
{
"query":{
"bool":{
"filter":[
{
"terms":{
"categories.id":[
9
]
}
},
{
"terms":{
"deleted":[
false
]
}
},
{
"terms":{
"published":[
true
]
}
},
{
"range": {
"VendorMinPrice": { "gte": 0, "lte": 0 }
}
},
{
"range": {
"VendorMaxPrice": { "gte": 0, "lte": 0 }
}
}
]
}
}
}

please take your time to properly write up a question instead of one sentence in the subject and a snippet in the post. Describe what you are trying to achieve, provide sample data, provide responses, and also write down what you are expecting and what is returned. The above is not enough in order to properly debug your problem. Thanks!

See also https://www.elastic.co/help

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.