我想过滤弹性搜索查询的结果并仅检索那些具有非空字段的结果
例如。给出以下数据
{
total: 4912,
max_score: 1,
hits: [
{
{
_index: "gcba",
_type: "bafici",
_id: "5a93472b-5db4-4ff9-8c8a-d13158e72d5f-62",
_score: 1,
_source: {
id_film: "23",
title: "great film",
}
},
{
_index: "gcba",
_type: "bafici",
_id: "2732fbf4-4e55-4794-8e98-e5d5fa6a0419-40",
_score: 1,
_source: {
name: "conference",
[...]
}
}
}
我想发出类似的东西
.../_search?from=1&size=100&q=id_film:'*'
仅获取具有 id_film 值的元素