Hello,
Is there a way to pick up nodes of specific resource types eg:foundation/components/text and test/components/textCustom, under a specific path, /content/Test/en_US, and retrieve the ones modified in past 2 days?
Please let me know.
Regards,
NZ
Solved! Go to Solution.
You could also use this:
map.put("relativedaterange", "@jcr:content/cq:lastModified"); map.put("relativedaterange.lowerBound", "-2d");
for changes made in the last two days :)
Good Luck
/Johan
Views
Replies
Total Likes
The QueryBuilder API is built on JCR API. Having said that -- see this thread that talks about your use case:
http://jackrabbit.510166.n4.nabble.com/Querying-for-all-modified-nodes-based-on-jcr-lastModified-td5...
HTH
Views
Replies
Total Likes
Thanks Scott, had figured it out earlier, appreciate help.
daterange.property=jcr:lastModified
daterange.property.and=true
daterange.lowerBound=2013-09-09
daterange.lowerOperation= >=
daterange.upperBound =2013-09-14
Regards,
Nicole
You could also use this:
map.put("relativedaterange", "@jcr:content/cq:lastModified"); map.put("relativedaterange.lowerBound", "-2d");
for changes made in the last two days :)
Good Luck
/Johan
Views
Replies
Total Likes
hi,
I want to search for assets in the whole Dam just excluding a folder(read expired folder). how can i achieve it..
please help.
thank you.
Views
Replies
Total Likes
Views
Likes
Replies