Answers for "how to add multiple filters in findOneandUpdate in moongoose and nodejs"

0

mongoose find multiple conditions

User.find({$or:[{region: "NA"},{sector:"Some Sector"}]}, function(err, user) 
 {
    if (err)
    {
        res.send(err);
    }
    console.log(user);
    res.json(user);

 });
Posted by: Guest on July-30-2020

Code answers related to "how to add multiple filters in findOneandUpdate in moongoose and nodejs"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language