Jest to jeden z głównych przypadków użycia 'remove'
Mongoose'a oprogramowanie pośredniczące.
clientSchema.pre('remove', function(next) {
// 'this' is the client being removed. Provide callbacks here if you want
// to be notified of the calls' result.
Sweepstakes.remove({client_id: this._id}).exec();
Submission.remove({client_id: this._id}).exec();
next();
});
W ten sposób, gdy wywołasz client.remove()
to oprogramowanie pośredniczące jest wywoływane automatycznie w celu usunięcia zależności.