需要在 MarkLogic 上编写 JSON 查询
Need to write a JSON query on MarkLogic
我正在使用 MarkLogic 8
并使用 Java Api 来编写和读取文档。
我将文档存储为 json
并且 json
包含一个节点,该节点是一个以毫秒为单位的时间戳(java 长值)。我需要根据这个时间戳查询文档。
即,对于给定的范围 longvalue1 到 longvalue2。我怎么做?
我见过这样的例子 -
{ query { "key": "value"} }
但是我可以在查询中使用 > 或 < 吗?
请通读 Query By Example. You can create a range index of type long on your timestamp property then use Comparison Operators on Range Query 上的搜索开发人员指南部分。
我正在使用 MarkLogic 8
并使用 Java Api 来编写和读取文档。
我将文档存储为 json
并且 json
包含一个节点,该节点是一个以毫秒为单位的时间戳(java 长值)。我需要根据这个时间戳查询文档。
即,对于给定的范围 longvalue1 到 longvalue2。我怎么做?
我见过这样的例子 -
{ query { "key": "value"} }
但是我可以在查询中使用 > 或 < 吗?
请通读 Query By Example. You can create a range index of type long on your timestamp property then use Comparison Operators on Range Query 上的搜索开发人员指南部分。