是否可以使用Orion运行查询,其中搜索条件由属性值给出?

时间:2015-03-18 12:38:26

标签: fiware-orion fiware

当我在Orion服务器中创建实体时,我可以按ID搜索,平面或使用正则表达式:

http://<localhost>:1026/v1/queryContext

内容:

{
  "entities": [
  {
    "type": "Sensor",
    "isPattern": "true",
    "id": "sensor_1.*"
  }
  ],
  "attributes": ["temperature","humidity"]
}

在上面的例子中,我得到所有类型的对象&#34;传感器&#34;其ID以&#34; sensor_1&#34;开头,其属性&#34;温度&#34;和&#34;湿度&#34;。我想知道是否有任何方法可以让我按特定的属性值进行搜索,例如获取那些湿度超过&#34; 60.2&#34;的传感器,或者必须对检索到的数据进行选择。 ID。

1 个答案:

答案 0 :(得分:0)

不在目前的Orion版本(0.19.0)中,但将来可能会有。使用attribute::<name>运算符in this document查看=过滤器。