是否存在 exists
返回在提供的字段中包含 null 或 [] 以外的值的文档。
GET /_search
{
"query": {
"exists": {
"field": "user"
}
}
}
查找具有空值的文档
要在提供的字段中查找仅包含空值或 [] 的文档,请将 must_not 布尔查询与 exists 查询一起使用
以下搜索返回用户字段中仅包含空值或 [] 的文档。
GET /_search
{
"query": {
"bool": {
"must_not": {
"exists": {
"field": "user"
}
}
}
}
}