Quiero hacer algo similar a esto pero no funciona:
Código:
userSchema.pre(/^find/, async function (next) { if (this.role !== "admin") { this.find({ active: true }); } next(); });