querybuilder basic question
Here we have some example queries:
https://helpx.adobe.com/experience-manager/6-3/sites/developing/using/querybuilder-api.html
This example:
http://localhost:4502/bin/querybuilder.json?type=cq:Page&orderby=@jcr:content/cq:lastModified
returns things like this:
- hits: [{path: "/etc/security/accountmgr", excerpt: "Service Configuration for Account Self-Service",…},…]
- 0: {path: "/etc/security/accountmgr", excerpt: "Service Configuration for Account Self-Service",…}
- excerpt: "Service Configuration for Account Self-Service"
- lastModified: "2009-03-16 15:46:13"
- name: "accountmgr"
- path: "/etc/security/accountmgr"
- title: "Self-Service Configuration"
Questions:
- None of the results are actually pages from the site? The site we have locally is the wknd starter site. How do you return pages from the site hosted in AEM?
- type=cq:Page what other types are available? Is this the type of the items searched, or the type of the items returned?
