In diesem Fall können Sie populate with dynamic ref verwenden . Zum Beispiel:
const CommentSchema = mongoose.Schema({
description: String,
user_type: String // Student or Teacher
user_id: {
type: Schema.Types.ObjectId,
refPath: 'user_type'
}
})