इस मामले में, आप डायनामिक रेफरी के साथ पॉप्युलेट का उपयोग कर सकते हैं . उदाहरण के लिए:
const CommentSchema = mongoose.Schema({
description: String,
user_type: String // Student or Teacher
user_id: {
type: Schema.Types.ObjectId,
refPath: 'user_type'
}
})