model('Test', mySchema); // Mongoose will filter out `notInSchema: 1` because `strict: true`, meaning this query will return // _all_ documents in the 'tests' collection MyModel.find({ notInSchema: 1 }); The strict option does apply to updates. The strictQuery option is just for...