Mongodb – Reference to an object inside an array in another collection
Following is the WorkingDay model const workingDaySchema = new mongoose.Schema({ date: { type: String, unique: true, required: true }, availableSlots: [ { startTime: Date, endTime: Date, size: Number, enrolledUsers: [{ type: Schema.Types.ObjectId, ref: 'Response' }] } ] }) module.exports =…