Answers for "mongoose find by array value"

0

mongoose query using an arry

var query = PUser.find({'userID': {$in:array}});
Posted by: Guest on May-15-2020
0

mongoose find in array

Or, if teamIds is a string of comma-separated id values, you need to convert it into an array of values using split:
Team.find({
    '_id': { $in: teamIds.split(',') }
}, function(err, teamData) {
    console.log("teams name  " + teamData);
});
Posted by: Guest on November-03-2021
-1

monngoose find from an array using in

//If teamIds is already an array, then you shouldn't wrap it in another array:

Team.find({
    '_id': { $in: teamIds }
}, function(err, teamData) {
    console.log("teams name  " + teamData);
});

//If teamIds is a string of comma-separated id values, you need to convert it into an array of values using split:

Team.find({
    '_id': { $in: teamIds.split(',') }
}, function(err, teamData) {
    console.log("teams name  " + teamData);
});
Posted by: Guest on August-04-2021
-1

monngoose find from an array using in

//e.g. : There's an array of Team Ids which needs to find documents from db
Team.find({
    '_id': { $in: teamIds.split(',') }
}, function(err, teamData) {
    console.log("teams name  " + teamData);
});
Posted by: Guest on August-04-2021

Code answers related to "mongoose find by array value"

Code answers related to "Javascript"

Browse Popular Code Answers by Language