Le crédit va à ce post :https://stackoverflow.com/a/38488773/1936186 `
UserFormSchema.post('save', function (next) {
var form = this;
mongoose.model('SubCategory').getById(form.subCategoryId).then(function(data){
console.log(data);
}).catch(function(err){
return Promise.reject(err);
});
});