Closed zhengyhn closed 7 years ago
I'll say no, but that's just because implementations for soft delete are very subjective. You could just add a boolean "deleted" field and update it with the update method.
So instead of
task.remove("things", {_id: someId})
you could do
task.update("things", {_id: someId}, {deleted: true})
Hi, We don't have permission to remove records in production, can Fawn support soft delete? For example, use this package mongoose-delete.