на данный момент я создал другую схему для профиля пользователя и сделал ссылку на схему пользователя и мою схему профиля пользователя. У меня есть около 50-60 документов (полей).
const user = new mongoose.Schema({
a: { type: String,required: true},
b: { type: String,required: true},
profile:{
type: mongoose.Schema.Types.ObjectId,
ref: 'Profile'
},
})
const profile = new mongoose.Schema({
a: { type: String,required: true},
b: { type: String,required: true},
})