ठीक है दोस्तों मुझे इस समस्या का एक संभावित समाधान मिला। मुझे महसूस हुआ कि मैंगो में जॉइन नहीं होता है, इसीलिए सबसे पहले आपको अपनी पसंद की भूमिका के साथ यूजर की आईडी को क्वेरी करने की जरूरत है, और उसके बाद प्रोफाइल डॉक्यूमेंट में एक और क्वेरी करें, कुछ इस तरह:
const exclude: string = '-_id -created_at -gallery -wallet -MaxRequestersPerBooking -active -__v';
// Get the _ids of users with the role equal to role.
await User.find({role: role}, {_id: 1, role: 1, name: 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 profiles whose users are in that set.
Profile.find({user: {$in: ids}}, function(err, profiles) {
// docs contains your answer
res.json({
code: 200,
profiles: profiles,
page: page
})
})
.select(exclude)
.populate({
path: 'user',
select: '-password -verified -_id -__v'
// group: { role: "$role"}
})
});