AEM allows me to query against a REST API like so:
Search for pages tagged with a certain tag
1 type=cq:Page 2 tagid=marketing:interest/product 3 tagid.property=jcr:content/cq:tags
However what if I want all pages that don't include a certain tag?
1 type=cq:Page
2 tagid=marketing:interest/product
3 tagid.property=jcr:content/cq:tags
In xPath I can do something like:
//jcr:content/cq:tags[not(@tagId = 'marketing:interest/product')]
Is this possible through the REST API?