我正在尝试编写一个过滤掉空值的 MQL 查询。
我现在的查询(可以使用MQL 查询编辑器执行):
[
{
"/common/topic/image" : [
{
"id" : null
}
],
"article" : [
{
"content" : null
}
],
"name" : "bill gates",
"type" : "/common/topic"
}
]
我得到的结果:
[
{
"/common/topic/image" : [
{
"id" : "/guid/9202a8c04000641f8000000004fb4c01"
},
{
"id" : "/wikipedia/images/commons_id/4486276"
}
],
"article" : [
{
"content" : null
},
{
"content" : "/guid/9202a8c04000641f800000000903535d"
}
],
"name" : "Bill Gates",
"type" : "/common/topic"
}
]
我试图弄清楚如何在查询时过滤掉“内容”:“文章”数组中的空匹配。我查看了 MQL 文档,但没有找到明确的方法。