AEM 6.2 ::使用特定标签搜索cq:Page和dam:Asset,并按jcr:created排序

时间:2018-07-22 03:24:32

标签: aem cq5 query-builder

我正在尝试创建PredicateGroup,它将在相应路径下搜索所有cq:Page和dam:Asset。此外,这些节点被标记有特定标签,并按jcr:created排序。

这是我写的:

group.1_group.p.and=true
group.1_group.path=/content/some/path
group.1_group.type=cq:Page
group.1_group.1_property=@jcr:content/cq:tags
group.1_group.1_property.value=root:some/tag
group.p.or=true
group.2_group.p.and=true
group.2_group.path=/content/dam/some/path
group.2_group.type=dam:Asset
group.2_group.1_property=@jcr:content/metadata/cq:tags
group.2_group.1_property.value=root:some/tag

,它将不适用于查询调试器。我也查看了此URL Search DAM assets and Cq pages using lastModified date | QueryBuilder,但不知道自己在做什么错。现在,我还没有添加排序条件,因为我正在尝试逐步进行。

预先感谢

0 个答案:

没有答案