I am using query builder to return some AEM data via the REST API. I have the following query:
http://<server>:<port>/bin/querybuilder.json?type=cq:PageContent
&path=<contentpath>
&p.hits=selective
&p.properties=jcr:title cq:lastModified cq:tags /jcr:content/image/fileReference/
&p.limit=0
It appears that p.hits will not return values in nodes that are not at the top level. For instance, first three properties in the p.properties list above are page level properties where the fourth property is the property of a child node. According to the documentation you should be able to provide the path to the property relative to the page. This is what I have done, but I am unable to get the query to return the value (even though I confirmed it exists in crx/de)