Answers for "how to find documents with more than one condition in mongoose"

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 find documents with more than one condition in mongoose"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language