1ListModel.findOne({
2 "_id" : "57e6bcab6b383120f0395aed", 'recipients.status' : 1
3 },
4 {
5 _id:1, name: 1, subject:1,'recipients.$': 1
6 },
7 function(err,list) {...}
8);
9
1 System.findOne({ 'nodes.main.Alpha': 23000}, function(err, system){
2 if(err){console.log(err);}
3 else{console.log(system);}
4 });