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