I have this code
var ClientSchema = new Schema({ name: {type: String, required: true, trim: true} }); var Client = mongoose.mode(\'Client\', ClientSchema)
If you add this option in your config of mongoose it works:
mongoose.set('runValidators', true)