mongodb subdocument to string code example
Example 1: mongoose find get nested prop only
ListModel.findOne({
"_id" : "57e6bcab6b383120f0395aed", 'recipients.status' : 1
},
{
_id:1, name: 1, subject:1,'recipients.$': 1
},
function(err,list) {...}
);
Example 2: mongoose find by nested property
System.findOne({ 'nodes.main.Alpha': 23000}, function(err, system){
if(err){console.log(err);}
else{console.log(system);}
});