I have 2 cursors over a same mongodb collection, referencing 2 different subsets of documents. How can I determine the difference between the two, that is, elements in cursor #1 which are NOT in cursor #2 Thanks
var cursor1=collection1.find(...condition 1...);
var cursor2=collection2.find(...condition 2..., fields:{collection1index:1,});
var difference=...