There is no way currently to find out the contents of the item that was deleted. Versions history is erased on delete and even the oplog with audit only records the id of doc that was deleted but not the contents. Is there a particular reason for this?
My usecase is that I want to give a way to review changes and possibly revert them. Oplog seems like the right tool for this, except for deletes.
Is the expectation that these usecases would use a logical delete instead of true DELETE method? If so, what would a recommended way to implement logical delete?
Latest commit on v0.5dev has DELETE
included in the audit, document included, so your use case should be covered.