Trong trường hợp này, bạn có thể sử dụng điền với giới thiệu động . Ví dụ:
const CommentSchema = mongoose.Schema({
description: String,
user_type: String // Student or Teacher
user_id: {
type: Schema.Types.ObjectId,
refPath: 'user_type'
}
})