SQL2
All nodes with a specific name
SELECT * FROM [nt:unstructured] AS node
WHERE ISDESCENDANTNODE(node, "/search/in/path")
AND NAME() = "nodeName"
All pages below content path
SQL2
All nodes with a specific name
SELECT * FROM [nt:unstructured] AS node
WHERE ISDESCENDANTNODE(node, "/search/in/path")
AND NAME() = "nodeName"
All pages below content path
/content | |
/example | |
@jcr:primaryType = "nt:unstructured" | |
@jcr:title = "Outer Component" | |
@sling:resourceType = "example/components/outer" | |
/one | |
@jcr:primaryType = "nt:unstructured" | |
@jcr:title = "Inner Component One" | |
@sling:resourceType = "example/components/inner" | |
/two |