skip to Main Content

Display data from another collection in MongoDB

I have two separate collection in MongoDB 1-> Post, 2-> Comment. Post-schema: const postSchema = new mongoose.Schema( { userId: { type: mongoose.Schema.Types.ObjectId, ref: "User", required: true, }, media: { type: [mongoose.Schema.Types.Mixed], trim: true, required: true, }, text: String, mentions: {…

VIEW QUESTION
Back To Top
Search