In dit geval kunt u populate gebruiken met dynamic ref . Bijvoorbeeld:
const CommentSchema = mongoose.Schema({
description: String,
user_type: String // Student or Teacher
user_id: {
type: Schema.Types.ObjectId,
refPath: 'user_type'
}
})