using GraphQL in aem i want to access the ootb rendered images that i can use for various screensizes,
Is it possible to access in that way or dynamic media requirement is mendatory for doing this.
Topics help categorize Community content and increase your ability to discover relevant content.
Views
Replies
Total Likes
Hi @Deleted Account ,
You can add Image Rendition as well in the below code to get Appropriate image to display.
Here is detailed documentation.
Cheers,
Aditya
query($path: String!, $imageFormat: AssetTransformFormat=JPG, $imageSeoName: String, $imageWidth: Int, $imageQuality: Int) {
adventureByPath(
_path: $path
_assetTransform: {
format: $imageFormat
width: $imageWidth
quality: $imageQuality
preferWebp: true
}
) {
item {
_path
title
primaryImage {
... on ImageRef {
_dynamicUrl
}
}
}
}
}
Hi @Aditya_Chabuku , Thank you for your response. My mistake, I didn't mention the AEM version we are using. It seems you're referring to the web-optimized images feature, but according to the documentation, it's not supported for AEM 6.5. Is there an alternative for AEM 6.5 to provide rendered images or paths for different screen sizes for headless implmentation?
Thanks,
Avinash
@Deleted Account Did you find the suggestion helpful? Please let us know if you require more information. Otherwise, please mark the answer as correct for posterity. If you've discovered a solution yourself, we would appreciate it if you could share it with the community. Thank you!
Views
Replies
Total Likes
Views
Likes
Replies