Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
User.findById(id).populate('profile').exec(function(err, user) { user.profile.description = newDescription; user.save(); });
User.findById(id).populate('profile').exec(function(err, user) { Profile.findOneAndUpdate({ _id: user.profile }, { description: newDescription }); user.save(); });