Thursday, September 4, 2025
HomeLanguagesJavascriptMongoose | deleteMany() Function

Mongoose | deleteMany() Function

The deleteMany() function is used to delete all of the documents that match conditions from the collection. This function behaves like the remove() function but it deletes all documents that match conditions regardless of the single option. Installation of mongoose module:

  1. You can visit the link to Install mongoose module. You can install this package by using this command.
npm install mongoose
  1. After installing mongoose module, you can check your mongoose version in command prompt using the command.
npm version mongoose
  1. After that, you can just create a folder and add a file for, example index.js. To run this file you need to run the following command.
node index.js

Filename: index.js 

javascript




const mongoose = require('mongoose');
 
// Database connection
    useNewUrlParser: true,
    useCreateIndex: true,
    useUnifiedTopology: true
});
 
// User model
const User = mongoose.model('User', {
    name: { type: String },
    age: { type: Number }
});
 
// Function call
// Deleting all users whose age >= 15
User.deleteMany({ age: { $gte: 15 } }).then(function(){
    console.log("Data deleted"); // Success
}).catch(function(error){
    console.log(error); // Failure
});


Steps to run the program:

  1. The project structure will look like this: project structure
  2. Make sure you have installed mongoose module using following command:
npm install mongoose
  1. Below is the sample data in the database before the deleteMany() function is executed, You can use any GUI tool or terminal to see the database, like we have used Robo3T GUI tool as shown below: Database after delete command
  2. Run index.js file using below command:
node index.js
  1. Output of above command
  2. After running above command, you can see the data is deleted from the database. Database after delete command

So this is how you can use mongoose deleteMany() function to delete multiple documents from the collection in MongoDB and Node.js.

RELATED ARTICLES

Most Popular

Dominic
32261 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6626 POSTS0 COMMENTS
Nicole Veronica
11795 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11855 POSTS0 COMMENTS
Shaida Kate Naidoo
6747 POSTS0 COMMENTS
Ted Musemwa
7023 POSTS0 COMMENTS
Thapelo Manthata
6695 POSTS0 COMMENTS
Umr Jansen
6714 POSTS0 COMMENTS