MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

Wie bevölkert man in diesem Fall Mongoose?

Versuchen Sie:

  notifications: {
    notifiId: {type: Schema.Types.ObjectId, ref: 'Notifications' },
    viewed: { type: Number, default: 0 }
  },

und um es zu finden:

model_Variable.findById(req.params.id).populate("notifiId").exec(function (err, 
callBack) {});