Sitecore Item Date Modified Query

October 1, 2013

Recently I have gotten tired of trying to remember all the items I have updated and templates I have changed when I am trying to create a package, so I thought, why not use a Sitecore query to find all those items. By targeting the standard ‘Updated’ field, we can easily get all the items we have touch within a time frame:

/sitecore/content/path/to/topnode/*[@__Updated >= '20130905T000000' and @__Updated < '20130911T000000']

I am just running this query in the Developer Center using the XPath builder and it gives me a quick and organize view of all the items I have touched between the two dates 09-05-2013 and 09-11-2013.

Tags: Sitecore

Back to Posts