Hi @LokeshTripathi , There is no such limitation for local AEM SDK, we should be able to update HTL on the go. Try incognito window once or setting up the AEM instance again. BTW, what kind of project setup do you have, React/Angular?
Hi @srajput-woolies , It seems the natural ordering is being applied by default. Is it possible you can apply sorting based on some attribute you are going to fetch from theses nodes as per business requirement? Another solution is to run the query on each node and then add the result. Thanks,Ritesh...
Hi @Alex_Terinte , Which AEM version you are using? Are you able to access the content fragment data without GraphQL APIs? Are you getting any error while running the query (in logs/network call)? Thanks,Ritesh Mittal
Hi @kaikubad ,
Have you checked if the Link Checker is not disabled?
https://experienceleague.adobe.com/docs/experience-manager-64/administering/operations/external-link-checker.html?lang=en#disabling
Thanks,
Ritesh Mittal
Hi @Deleted Account ,
Please check if you have 'URL mapping' added to 'Apache Sling Resource Resolver Factory' or custom link rewriter added to your project. Please use below videos for reference-
https://www.youtube.com/watch?v=zcKwRTZ78_Y&list=PLzwWOJSdKWBf7zLga8P7-ARxFQRwGGd94&index=29
http...
Hi @Sudarshan1992 ,
One solution could be to traverse till <content-fragment-path>/jcr:content/data node as a resource, fetch the 'cq:model' property and fetch using ValueMap.
Resource res = resourceResolver.getResource("/content/dam/<yourproject-cf-path>/<cf-name>/jcr:content/data");
ValueMap...
Hi @subnaik ,
You need to put a debugger point inside ApiUtility's isPublished method and inspect which object is null. NullPointerException is thrown when the application attempts to use null object, for example get operation.
In this case, the null object can be any of these - resourceResolver...
Hi @nikita24tailor ,
have you written the custom rewriter and getting some error or it is not working?
Please follow this for your reference-
https://www.youtube.com/watch?v=0fM2vUEj2bA&list=PLzwWOJSdKWBf7zLga8P7-ARxFQRwGGd94&index=29
Thanks,
Ritesh Mittal
Hi @kaikubad ,
We face replication issue (queue getting blocked ) when -
We try to replicate bulk content without activating parent folder. Check your logs if you find some exception like 'Parent node not found'.
Also, check if your content node names contain special characters, replicating su...
Hi @cosmicthief ,
One way would be to create a custom container components with test condition of view port and then configuring different Experience Fragment inside them. Inside Sling Model you can return the mobile flag.
<sly data-sly-test.isMobile="${main.isMobile}">
// Add mobile EF to parsy...