Welcome to the Jazz Community Forum
Retrieval of ChangeSets from CompareBaselineSets Method

Dear Team,
We are currently getting Changesets between 2 Snapshots by using below snippet,
IChangeHistorySyncReport changeSync = workspaceManager.compareBaselineSets(snapshot, snapshotParent,
null, null);
for (final Object currentEntry : changeSync.outgoingChangeSets()) {
IChangeSetHandle csHandle = (IChangeSetHandle) currentEntry;
System.out.println("Found CS '" +((IChangeSet) teamRepository.itemManager().fetchCompleteItem(csHandle, IItemManager.DEFAULT, null)).getComment() + "'");
matchedCSs.add(csHandle);
}
My query is ,
On What basis/order Changesets are provided from method OutgoingChangesets i.e like last modified date,created date or any other conditions.
Accepted answer
