cancel
Showing results for 
Search instead for 
Did you mean: 

Determine a list of delete items

rdifrango
Champ in-the-making
Champ in-the-making
Is there a way to determine the list of recently deleted items via the Javascript API's and/or the Lucene search?
2 REPLIES 2

rdifrango
Champ in-the-making
Champ in-the-making
I figured out how to do this on the DM side.  It is as simple as performing the search against the archive space.

//Acvtive Nodes
var nodes = search.luceneSearch("workspace://SpacesStore", query);

// Deleted Nodes
var deletedNodes = search.luceneSearch("archive://SpacesStore", query);

rdifrango
Champ in-the-making
Champ in-the-making
Anyone have thoughts on how to accomplish this on the WCM side?