Open In App

Mongoose Query.prototype.replaceOne() API

Last Updated : 29 Dec, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

The Mongoose Query API replaceOne() method is used to replace a single document from a collection using the MongoDB query system. It can update only one document at a time.

Syntax:

Query.prototype.replaceOne(filter, doc, options, callback)

Parameters: It accepts the following 4 parameters as mentioned above and described below:

  • filter: It is a mongoose object which identifies the existing document to replace.
  • doc: It is a mongoose object which is the document that will replace the existing document.
  • options: It is an optional mongoose object which is derived from Query.prototype.setOptions().
  • callback: It is a callback function that accepts 2 parameters, error and writeOpResult.

Return type: It returns a Query object as a response.

Creating node application And Installing Mongoose:

Step 1: Create a node application using the following command:

mkdir folder_name
cd folder_name
npm init -y
touch main.js

Step 2: After completing the Node.js application, Install the required module using the following command:

npm install mongoose

Example 1: In this example, we will use this method to replace an existing document that has the name “Luffy”.

Filename: main.js

Javascript




const mongoose = require('mongoose')
  
// Database connection
    {
        dbName: 'event_db',
        useNewUrlParser: true,
        useUnifiedTopology: true
    }, err => err ? console.log(err)
        : console.log('Connected to database'));
  
const personSchema = new mongoose.Schema({
    name: {
        type: String,
    },
    age: {
        type: Number,
    }
});
  
const personsArray = [
    {
        name: 'Luffy',
        age: 19
    },
    {
        name: 'Nami',
        age: 20,
    },
    {
        name: 'Zoro',
        age: 35
    }
]
  
const Person = mongoose.model('Person', personSchema);
  
(async () => {
    await Person.insertMany(personsArray);
    await Person.where({ name: 'Luffy' })
            .replaceOne({ age: 21 });
})()


Step to Run Application: Run the application using the following command from the root directory of the project:

node main.js

Output: GUI Representation of the  Database using MongoDB Compass:

 

Example 2: In this example, we will use this method to replace a single document that has an age greater than or equal to “18”.

Filename: main.js

Javascript




const mongoose = require('mongoose')
  
// Database connection
    {
        dbName: 'event_db',
        useNewUrlParser: true,
        useUnifiedTopology: true
    }, err => err ? console.log(err)
        : console.log('Connected to database'));
  
const personSchema = new mongoose.Schema({
    name: {
        type: String,
    },
    age: {
        type: Number,
    }
});
  
const personsArray = [
    {
        name: 'Luffy',
        age: 19
    },
    {
        name: 'Nami',
        age: 20,
    },
    {
        name: 'Zoro',
        age: 35
    }
]
  
const Person = mongoose.model('Person', personSchema);
  
(async () => {
    await Person.insertMany(personsArray);
    await Person.where({ age: { $gte: 18 } })
            .replaceOne({ age: 21 });
})()


Step to Run Application: Run the application using the following command from the root directory of the project:

node main.js

Output: GUI Representation of the  Database using MongoDB Compass:

 

Reference: https://mongoosejs.com/docs/api/query.html#query_Query-replaceOne



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads