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

542
Views
How to check if a record/document already exists in MongoDB using mongoose?

I am trying to check if a record exists in MongoDB using mongoose. For that I am using the function findOne(). But even if the record/document does not exists the query returns a non null value. How to use this function or any other way to check if a document exists? My code is:

var req_username = "";
var req_password = "";
const insertUserIntoDatabase = (requestBody) => {
    req_username = requestBody.username;
    req_password = requestBody.password;
    connectToDatabase();
    if (doesUserExistAlready()==true) {
      console.log("user already there");
    }else{
      insertUser();
    }
}                                              

const connectToDatabase = () => {
  mongoose.connect("mongodb://localhost/my_database",
  {useNewUrlParser:true});
}

const doesUserExistAlready = () => {
  const doc = user.findOne({username:req_username});
  if (doc == null) {
    return false;
  }else{
    return true;
  }
}

const insertUser = () => {
  var newUserDoc = new user();
  newUserDoc.username = req_username;
  newUserDoc.password = req_password;
  newUserDoc.save();
}
about 4 years ago · Santiago Trujillo
2 answers
Answer question

0

This is because mongoose's findOne returns a "Mongoose document", which is essentially a glorified wrapper. this means if it's a null value it will still have the "mongoose document" properties.

You want to be using the lean option to bypass this:

const doc = user.findOne({username:req_username}).lean();

Now if the user does not exist doc will have a null value as expected.

about 4 years ago · Santiago Trujillo Report

0

Try this:

const connectToDatabase = () => {
    mongoose.connect("mongodb://localhost/my_database", {
        useNewUrlParser: true
    });
}
var req_username = "";
var req_password = "";
user.findOne({
        username: req_username
    })
    .then(async (user) => {
        if (user) {
            console.log("user already there");
        } else {
            var newUserDoc = new user();
            newUserDoc.username = req_username;
            newUserDoc.password = req_password;
            await newUserDoc.save();
        }
    })
about 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!