Đối với bất kỳ ai khác gặp câu hỏi này .. mã OP có lỗi trong định nghĩa giản đồ .. nó phải là:
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);