AEM asset query for replication status. | Community
Skip to main content
October 16, 2023
Solved

AEM asset query for replication status.

  • October 16, 2023
  • 1 reply
  • 671 views

Is there a way to jcr query or sql query all the assets by the replication status? For example something like this.

type=dam:Asset
path=/content/dam
property=replication/isActivated
property.value=true

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Mahedi_Sabuj

You need to use jcr:content/cq:lastReplicationAction property to filter by the replication status

type=dam:Asset path=/content/dam property=jcr:content/cq:lastReplicationAction property.value=Activate

 

 

1 reply

Mahedi_Sabuj
Community Advisor
Mahedi_SabujCommunity AdvisorAccepted solution
Community Advisor
October 16, 2023

You need to use jcr:content/cq:lastReplicationAction property to filter by the replication status

type=dam:Asset path=/content/dam property=jcr:content/cq:lastReplicationAction property.value=Activate

 

 

Mahedi Sabuj