@Shashi_Mulugu I think using sling model we can only expose content as json using sling exporter.@Exporter(name = ExporterConstants.SLING_MODEL_EXPORTER_NAME, extensions = ExporterConstants.SLING_MODEL_EXTENSION)https://developer.adobe.com/experience-manager/reference-materials/6-4/javadoc/constant-...
I think you have to update update your graphql queries as well when you upgrade AEM to 6.5.15, prior to AEM 6.5.15, graphql was querying data based below properties of content fragment model but now it works based on content fragment model name itself.
please check https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/sling-filter-with-multiple-resource-type-and-specific-query/td-p/454045 and see if that helps.
Hello Team,Quick question on AEM author performance. I understand page load time on AEM author instance depends on multiple factors like template design, containers, components load time, client libs etc.. but keeping all the factors aside, what should we consider as good or poor performance as per ...
Query builder will help to search for any specific node type but if you want to list all nodes then pagepath.infinity.json is one option. Alternatively, if you wan to narrow down the results with specific levels then you can also try with pagepath.<0-n>.json Example: http://localhost:4502/content/we...
Hi @Art_Bird A ResourceResolver is generally not thread safe! As a consequence, an application which uses the resolver, its returned resources and/or objects resulting from adapting either the resolver or a resource, must provide proper synchronization to ensure no more than one thread concurrently ...
Hi @sumanth3 1. Can you please make sure the excel sheet has data in the following format:Row 1: Properties namesRemaining rows: with values 2. Also, make sure you've created content fragment models before you import the excel sheet. could be the reason, content fragment model is not present. Please...
@Sudarshan1992 I think it's better to create resource resolver object using ResourceResolverFactory than using ContentFragmentUtils. @Reference
private ResourceResolverFactory resourceResolverFactory; final Map<String, Object> authInfo = Collections.singletonMap(ResourceResolverFactory.SUBS...