https://stackoverflow.chow to build progressive web appom/questions/8303900/mongodb-mongoose-findmany-find-all-documents-with-ids-listed-in-array code example
Example: mongodb findmany
model.find({
'_id': { $in: [
mongoose.Types.ObjectId('4ed3ede8844f0f351100000c'),
mongoose.Types.ObjectId('4ed3f117a844e0471100000d'),
mongoose.Types.ObjectId('4ed3f18132f50c491100000e')
]}
}, function(err, docs){
console.log(docs);
});