📜  must_not 存在弹性搜索 - TypeScript 代码示例
📅  最后修改于: 2022-03-11 14:48:18.930000             🧑  作者: Mango
代码示例1
GET /_search
{
"query": {
"bool": {
"must_not": {
"exists": {
"field": "user.id"
}
}
}
}
}