如何仅查询 location_idnull 或locations.country_id 在一组给定 ID 中的文档?这是当前查询,但它根本不返回任何内容...如果我从查询中删除 location_id,它会起作用并至少返回与国家/地区 ID 匹配的文档。
{
"bool":{
"must":[
{
"bool":{
"must_not":[
{
"exists":{
"field":"location_id"
}
}
],
"must":[
{
"terms":{
"locations.country_id":[
18
]
}
}
]
}
}
]
}
}
qq_遁去的一_1