---
Say, I need to query an existing document from CollectionA. After
retrieving it, I need to change the _id and insert into CollectionB
(and delete the one in Collectinon A as well).
So, I would suppose that I first retrieve it, make a copy() or clone()
- which one ?? - and then use the copied/cloned version to change the
_id, and insert into CollectionB. Then, delete the originally retrieve
object from CollectionA.
---
Kevin.