问题 I want to populate the adminId path to User Model. Here is the code adminInfo: { _id: false, adminId: [{ type: Schema.Types.ObjectId, ref: 'User' }] } Here is a part of user schema: // user schema const UserSchema = new mongoose.Schema({ name: { firstName: { type: String, trim: true, required: true, }, lastName: { type: String, trim: true } }, email: { type: String, trim: true, required: true, unique: true, lowercase: true }, phone: { type: String, trim: true, minlength: 10, }, password: {