graphiql editor persistent queries no showing up | Community
Skip to main content
sreedobe
Level 4
April 2, 2026
Question

graphiql editor persistent queries no showing up

  • April 2, 2026
  • 1 reply
  • 5 views

Environment : AEM 6.5.21 , Issue do not see the persistent queries. endpoint can be seen on right side, but no persistent queries loaded, even though queries exist at crxde jcr node settings level for this specific project. This issue is on my local aem instance. configuration browser selected all the checkboxes, /content/site/jcr:content pointed to /conf/site where settings folder exist having all persistent queries 

 

1 reply

partyush
Community Advisor
Community Advisor
April 3, 2026

Hi ​@sreedobe 

The issue is almost certainly a simple path mismatch.

Since you selected the something endpoint in the dropdown, AEM is strictly looking for queries under the /conf/something/... tree. Because your queries are sitting under /conf/site/..., the UI just ignores them.

The quick fix: Move your persisted queries into the exact same configuration folder as your endpoint.

One big tip: Never create these query nodes manually in CRXDE. Always type them out in the GraphiQL editor and click "Save As". If you make them manually, the JCR node types are usually wrong, and AEM will silently fail to load them.

Thanks
Partyush