Is it possible to get the document that was removed from MongoDB?
result = db.things.remove({_id: id}) // is there a result.removedObjects?
db.collection('mycollection').findOneAndDelete({ id: '123456' }, function (error, response) { response.value;// returns the deleted object, but no longer exists in the database });