类似于我想在子字段上创建查询的问题 (不是嵌套类型)
如果数据是格式
"fs": {
"used": 1000,
"mount_point": "/"
}
正如aaronfay 在回答中提到的那样, 我尝试使用
search.query('match', **{"fs.used": 0})
它按预期工作。
但是对于名为的字段mount_point
,查询返回空响应。
search.query('match', **{"fs.mount_point": "/"})
即使我有数据mount_point = '/'
。为什么?