Грешката, която получавате, е в резултат на вграждането на Adventure
модел вместо схема. Трябва да добавите Adventure
схема в дефиницията на схемата на местоназначение Adventure
свойството на схемата на модела:
// this is the "destination" model for mongoose
var mongoose = require('mongoose');
var AdventureSchema = require('../models/adventure').schema; /* <- access the schema via its Model.schema property */
var tripSchema = mongoose.Schema({
name: { type: String, required: true },
city: { type: String, required: true },
dateStart: { type: Date, required: true },
dateFinish: { type: Date, required: true },
adventures: [AdventureSchema]
});