आप इसे एक ही प्रश्न में नहीं कर सकते क्योंकि MongoDB जॉइन का समर्थन नहीं करता है। इसके बजाय, आपको इसे दो चरणों में तोड़ना होगा:
// Get the _ids of people with the last name of Robertson.
Person.find({lastname: 'Robertson'}, {_id: 1}, function(err, docs) {
// Map the docs into an array of just the _ids
var ids = docs.map(function(doc) { return doc._id; });
// Get the companies whose founders are in that set.
Company.find({founder: {$in: ids}}, function(err, docs) {
// docs contains your answer
});
});