In AEM, 6.1 as a content author, how can i search for a list of pages that were published today in all of the sites in the environment.
Solved! Go to Solution.
AEM OOTB provides a filter for Publish status
For using a range, custom search facets can be created, similar to Modified date
You can write a custom service that queries JCR nodes (pages) based on a date.
With QueryBuilder you can run like below:
path=/content
type=cq:Page
daterange.property=jcr:content/cq:lastReplicated
daterange.lowerBound:2018-11-15
p.limit=-1
AEM OOTB provides a filter for Publish status
For using a range, custom search facets can be created, similar to Modified date
Views
Likes
Replies