How to populate nested fields in schema mongodb
I have a summary schema with a structure like this { sender: { type: mongoose.Schema.Types.ObjectId, ref: "User", required: true, }, summary: { type: String, }, sent: { type: Date, default: Date.now, }, } ); then a convo schema: NOTE: summary…