MongoDB
 sql >> Base de Dados >  >> NoSQL >> MongoDB

Como preencher neste caso Mongoose?


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

e para encontrá-lo:
model_Variable.findById(req.params.id).populate("notifiId").exec(function (err, 
callBack) {});