GET v2 /实体按日期过滤

时间:2019-11-15 11:25:23

标签: fiware-orion

我正在对现有的Orion Context Broker执行GET /v2/entities查询,我想通过TimeInstant属性过滤检索到的实体,该属性采用“日期”格式:2019-11-14T06:00:23.00Z 。我只想获取TimeInstant值> 2019-11-14T06:10:23.00Z的那些实体。我还没有找到显示如何处理不同于“ int”值的属性的示例。

1 个答案:

答案 0 :(得分:0)

例如,在https://developers.google.com/protocol-buffers/docs/reference/java/com/google/protobuf/Any的幻灯片65中有一个示例:

GET /v2/entities?q=TimeInstant>2019-11-14T06:10:23.00Z

请注意,为了使查询正常工作,TimeInstant属性必须为DateTime类型(或ISO8601类型,这是别名)。在the Orion introductory presentation中输入有关DateTime的更多信息。