带有字符串类型的元数据值的猎户星座

问题描述 投票:0回答:1

我正在尝试查询Orion版本2.2.0-next,以便返回与不同字符串的元数据值匹配的记录。我的JSON看起来像这样:

"AttributeName": {
        "type": "String",
        "value": "Some Value",
        "metadata": {
            "AttributeMeta": {
                "type": "String",
                "value": "Some Other Value"
            }
        }
    }

我正在查询Orion,如下所示:http://myip:1026/v2/entities?type=myType&mq=AttributeName.AttributeMeta==Some%20Other%20Value&options=count

很遗憾,退货为空。有什么想法,建议吗?

metadata fiware-orion
1个回答
0
投票

尝试删除'type = myType'。目前尚不清楚您要通过查询提取的实体的类型是什么。

© www.soinside.com 2019 - 2024. All rights reserved.