Hi,
I'm trying to utilize the below AEM Query:
type=cq:Page
p.hits=selective
p.properties=jcr:path
p.limit=-1
1_group.1_daterange.property=jcr:content/cq:lastModified
1_group.1_daterange.upperBound=2021-10-14
1_group.2_nodename=gr*
1_group.2_property.comparison=like
path=/content/
But it returns everything under /content/ and ignores the second part of the group. However, if I used this query:
type=cq:Page
p.hits=selective
p.properties=jcr:path
1_group.1_daterange.property=jcr:content/cq:lastModified
1_group.1_daterange.upperBound=2021-10-14
1_group.2_nodename=gr*
1_group.2_property.comparison=like
path=/content/
It works as expected (except that its returning a subset of rows).
I'm not seeing anything in the documentation that suggest an alternative to use in this case. What am I doing wrong?