In the SDK 2.0 version of the Rally release scope change app, there is a filter being applied to search items that are in the recycle bin (in the _getSnapsForSubset function):
var deleted_item_from_release_change_filter = Ext.create('Rally.data.lookback.QueryFilter', {
property: 'Release',
operator: 'in',
value:release_oids
}).and(Ext.create('Rally.data.lookback.QueryFilter', {
property: '_PreviousValues.Recycled',
value:false
}));
In the returned result sets during processing I want to pull these out explicitly but I can't see an easy way to identify them.
During the filter process can I tag these records in some way so I can easily identify them later?