इस प्रश्न पर आने वाले किसी और के लिए .. ओपी के कोड में स्कीमा परिभाषा में त्रुटि है .. यह होना चाहिए:
var conversationSchema = new Schema({
created: { type: Date, default: Date.now },
updated: { type: Date, default: Date.now },
recipients: [{ type: Schema.ObjectId, ref: 'User' }],
messages: [ conversationMessageSchema ]
});
mongoose.model('Conversation', conversationSchema);