आप प्रक्षेपण का उपयोग करते हैं। नेवला क्वेरी डॉक्स के पहले उदाहरण में एक प्रोजेक्शन ऑपरेशन शामिल है।
एनबी:वास्तविक कोड नहीं बी/सी मैंने ट्रिपल सितारों के साथ महत्वपूर्ण बिट्स को हाइलाइट किया
// find each person with a last name matching 'Ghost', ***selecting the `name` and `occupation` fields***
Person.findOne({ 'name.last': 'Ghost' }, ***'name occupation'***, function (err, person) {
if (err) return handleError(err);
console.log('%s %s is a %s.', person.name.first, person.name.last, person.occupation) // Space Ghost is a talk show host.
})
Person
स्कीमा निर्दिष्ट नहीं है लेकिन मुझे लगता है कि उदाहरण पर्याप्त स्पष्ट है।