MarkLogic 7 Return 具有特定元素的文档

MarkLogic 7 Return Document that have a specific element

MarkLogic 7 中的 cts:element-value-query 不像 MarkLogic 8 那样工作,我想 return 有一个元素的文档而不注意它的值 我的查询是这样的:

cts:search(collection("My-Collection"),cts:element-value-query(xs:QName("Element1"), ""))

我想要 return MarkLogic 7 中包含 Element1 的所有文档!!??

尝试:

cts:search(
  collection("My-Collection"),
  cts:element-query(xs:QName("Element1"), cts:and-query(()) )
)

应该适用于所有 MarkLogic 版本。

HTH!