Hi,
As a requirement i need to read the tags from the page. On the page we have authored multiple components, so we need to read the couple of properties which are tags on the page and the components which we authored on the page. Could you please help on the SQL2 query/XPath query.
Thanks & Regards,
Kalyan
Solved! Go to Solution.
Views
Replies
Total Likes
Hi,
Please find XPath Query to find node if tag exists. further, you can get the path and read the properties using ValueMap or node API
(/jcr:root/content/we-retail//element(*, cq:PageContent)
[
(@cq:tags)
] | /jcr:root/content/we-retail//element(*, nt:unstructured)[(@cq:tags)])
order by @jcr:score descending
Views
Replies
Total Likes
The JCR Query Cheat Sheet can help you. It includes useful samples: https://wiki.magnolia-cms.com/display/WIKI/JCR+Query+Cheat+Sheet
All Pages under /content that have cq:tags set (eg not null)
select * from [cq:Page] as page where page.[jcr:content/cq:tags] is not null and ISDESCENDANTNODE([/content])
Hi,
I need one property on cq;PageContent and other property on its childnode which is nt;unstructured type. Could you please help me on the SQL2 query.
Thanks & Regards,
Kalyan
Views
Replies
Total Likes
Hi,
Please find XPath Query to find node if tag exists. further, you can get the path and read the properties using ValueMap or node API
(/jcr:root/content/we-retail//element(*, cq:PageContent)
[
(@cq:tags)
] | /jcr:root/content/we-retail//element(*, nt:unstructured)[(@cq:tags)])
order by @jcr:score descending
Views
Replies
Total Likes
Views
Likes
Replies
Views
Like
Replies