Skip to content

Commit 2bf15d5

Browse files
authoredDec 26, 2022
Merge pull request #12827 from Automattic/vkarpov15/gh-12796
fix(schema): propagate strictQuery to implicitly created schemas for embedded discriminators
2 parents 9f05147 + 1482a1d commit 2bf15d5

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed
 

‎lib/schema.js

+3
Original file line numberDiff line numberDiff line change
@@ -1250,6 +1250,9 @@ Schema.prototype.interpretAsType = function(path, obj, options) {
12501250
if (options.hasOwnProperty('strict')) {
12511251
childSchemaOptions.strict = options.strict;
12521252
}
1253+
if (options.hasOwnProperty('strictQuery')) {
1254+
childSchemaOptions.strictQuery = options.strictQuery;
1255+
}
12531256

12541257
if (this._userProvidedOptions.hasOwnProperty('_id')) {
12551258
childSchemaOptions._id = this._userProvidedOptions._id;

‎test/schema.documentarray.test.js

+9
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,15 @@ describe('schema.documentarray', function() {
7575
done();
7676
});
7777

78+
it('propagates strictQuery to implicitly created schemas (gh-12796)', function() {
79+
const schema = new Schema({
80+
arr: [{ name: String }]
81+
}, { strictQuery: 'throw' });
82+
83+
assert.equal(schema.childSchemas.length, 1);
84+
assert.equal(schema.childSchemas[0].schema.options.strictQuery, 'throw');
85+
});
86+
7887
it('supports set with array of document arrays (gh-7799)', function() {
7988
const subSchema = new Schema({
8089
title: String

0 commit comments

Comments
 (0)
Please sign in to comment.