provide list of pages with their assosciated tag
Hi All,
I want to get a list of pages and their tags under "/content/masters" whose tag value is atlas-copco:industrial-tools/expert-hub/industries/industrial_assembly
for example:
page path : /content/masters/en
cq:tag: atlas-copco:industrial-tools/expert- hub/industries/industrial_assembly, atlas-copco:industrial-tools/webinars
I have used this query
SELECT * FROM [cq:PageContent] AS page
WHERE ISDESCENDANTNODE([/content/masters])
AND page.[cq:tags] = 'atlas-copco:industrial-tools/expert-hub/industries/industrial_assembly'
It just gives result with page path.
Can anyone provide the query.