W takim przypadku możesz użyć funkcji wypełniania za pomocą dynamicznej referencji . Na przykład:
const CommentSchema = mongoose.Schema({
description: String,
user_type: String // Student or Teacher
user_id: {
type: Schema.Types.ObjectId,
refPath: 'user_type'
}
})