我想添加一个“而不是”过滤器内部“和”过滤器
样品输入:
{
"query":{
"filtered":{
"query":{
"query_string":{
"query":"error",
"fields":[
"request"
]
}
},
"filter":{
and:[
{
"terms":{
"hashtag":[
"br2"
]
},
"not":{
"terms":{
"hashtag":[
"br1"
]
}
}
}
]
}
}
}
},
}
但上面给出的错误,我也尝试各种组合,但徒劳无功。 以上仅仅是在短的例子我需要一个查询,其中两个“与”,“非”过滤器是否存在。