NXQL Order by datetime

I would like to pull all the documents are created recently using NXQL. Please suggest me the NXQL for the same order by date

0 votes

1 answers

1015 views

ANSWER



Use this NXQL query

SELECT * FROM Document ORDER BY dc:created DESC
0 votes