Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

868
Views
Mongoose deleteMany en pre-hook, ¿cómo acceder a todos los documentos que se eliminarán?

tengo este codigo:

 postSchema.pre('deleteMany', async function (next: NextFunction) { try { console.log(this); return next(); // normal save } catch (error) { return next(error); } });

console.log está dando un object de query . ¿Hay documentos disponibles en algún lugar de la query ?

over 4 years ago · Santiago Trujillo
1 answers
Answer question

0

consulta en deletemany Ubicado en la clave _conditions de this , por lo que puede hacer esto en Post Model, por ejemplo:

 postSchema.pre('deleteMany', async function (next: NextFunction) { try { let deletedData =await Post.find(this._conditions).lean() console.log(deletedData ); return next(); // normal save } catch (error) { return next(error); } }); let Post= mongoose.model("Post", userSchema); module.exports = Post
over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!