AEM query builder api how to get publish url of image instead of image path?
When we query for a content fragment in query builder API, it returns the result as path of the image and not the actual image. In GraphQL query it returns the path however it is limited to functionalities and doesn't have sorting searching and ordering.
{
"success": true,
"results": 4,
"total": 4,
"more": false,
"offset": 0,
"hits": [
{
"featuredImage": "/content/dam/images/WELL_SITTING_EXERCISE_SEPT8_0.jpeg"
},
{
"featuredImage": "/content/dam/images/WELL_SITTING_EXERCISE_SEPT8_0.jpeg"
},
{
"featuredImage": "/content/dam/images/WELL_SITTING_EXERCISE_SEPT8_0.jpeg"
},
{}
]
}
Instead of getting image path I would like to get actual image URL. Would that be possible via queryBuilder API?