AEM query builder , not equals condition
I wanted to query all the pages with below conditions
- should be activated pages
- a property(flag) should be set to false
- should exclude 3 templates (template a, template b, template c)
I tried the below query for first 2 conditions, but how to include the third condition?
type=cq:PageContent
path=/content/retail
1_property=flag
1_property.value=false
2_property=cq:lastReplicationAction
2_property.value=Activate
property.and
p.limit=-1
p.hits=full
