AEM query to fetch pages with value is not equal to
Hi Team,
I need a query to get list of pages where one the value should not be equal.
For example:
This is my query:
path=content path here
type=cq:Page
1_property=jcr:content/cq:lastReplicationAction
1_property.value=Activate
2_property=jcr:content/channel
2_property.operation=unequals
2_property.value=channel:search
p.limit=-1
I need list of pages, whose channel value should not equal to "channel:search"
The above query is (jcr:content/@5644378:lastReplicationAction = 'Activate' and jcr:content/@channel != 'channel:search')
Here the channel type is multistring

The result of above query is still giving page results where the value is present.
Please let me know what is wrong, is it failing because channel is a multi String ?

