- group: This predicate is used to create logical conditions in your query. You can create complex conditions using OR & AND operators in different groups. e.g:
Example
type=nt:base
path:/content/AEM63App/en
group.1_property=jcr:created
group.1_property.value= admin
group.1_property=jcr:title
group.1_property.value=Travel
group.1_property.and=true
group.2_property=jcr:primaryType
group.2_property.value=cq:PageContent
group.p.or=true
this query will return result if (jcr:created==admin AND jcr:title ==Travel ) OR (jcr:primaryType == cq:PageContent)
hope this will help.
Thanks
Arun
Arun Patidar