Можете да използвате атрибута път за дълбоко свързване, това ще работи и за типове масив.
documentId: { type: mongoose.ObjectId, ref: 'Media' },
schema.virtual('educationDocument', {
ref: 'Media', // the collection/model name
localField: 'education.documentId',
foreignField: '_id',
justOne: true, // default is false });
const users = await User.find({})
.populate({ path: 'educationDocument' })
.populate({ path: 'experienceDocument' })
.populate({ path: 'certificationDocument' })
.execPopulate()