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:
- You can visit the link to Install mongoose module. You can install this package by using this command.
npm install mongoose
- After installing mongoose module, you can check your mongoose version in command prompt using the command.
npm version mongoose
- 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:
- The project structure will look like this:
- Make sure you have installed mongoose module using following command:
npm install mongoose
- 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:
- Run index.js file using below command:
node index.js
- After running above command, you can see the data is deleted from the database.
So this is how you can use mongoose deleteMany() function to delete multiple documents from the collection in MongoDB and Node.js.