Développer ma barre des réalisations de la Communauté.

Submissions are now open for the 2026 Adobe Experience Maker Awards.

Mark Solution

Cette conversation a été verrouillée en raison de son inactivité. Veuillez créer une nouvelle publication.

RÉSOLU

Query to get list of assets uploaded today

Avatar

Level 3

 

I have requirement to run a report daily  that provides details of all the assets uploaded that day (the day the report is created) with who uploaded the assets and missing metadata . what is the query i can use to get the list of assets which are uploaded/created the day report is generated?

1 solution acceptée

Avatar

Réponse correcte par
Community Advisor

Hi

Below is the query to fetch the assets which are uploaded in last 1 day

 

path=/content/dam/en
type=dam:Asset
relativedaterange.property=jcr:created
relativedaterange.lowerBound=-1d
p.limit=-1

Voir la solution dans l'envoi d'origine

2 Replies

Avatar

Réponse correcte par
Community Advisor

Hi

Below is the query to fetch the assets which are uploaded in last 1 day

 

path=/content/dam/en
type=dam:Asset
relativedaterange.property=jcr:created
relativedaterange.lowerBound=-1d
p.limit=-1

Avatar

Level 3

Thank you @Ravi_Pampana