@graphql-tools/schema 8.3.14 → 8.4.0-alpha-bdd7f13e.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +1 -1
- package/index.mjs +1 -1
- package/package.json +3 -3
package/index.js
CHANGED
|
@@ -526,7 +526,7 @@ function mergeSchemas(config) {
|
|
|
526
526
|
const schemas = config.schemas || [];
|
|
527
527
|
for (const schema of schemas) {
|
|
528
528
|
extractedTypeDefs.push(schema);
|
|
529
|
-
extractedResolvers.push(utils.getResolversFromSchema(schema));
|
|
529
|
+
extractedResolvers.push(utils.getResolversFromSchema(schema, true));
|
|
530
530
|
extractedSchemaExtensions.push(merge.extractExtensionsFromSchema(schema));
|
|
531
531
|
}
|
|
532
532
|
return makeExecutableSchema({
|
package/index.mjs
CHANGED
|
@@ -522,7 +522,7 @@ function mergeSchemas(config) {
|
|
|
522
522
|
const schemas = config.schemas || [];
|
|
523
523
|
for (const schema of schemas) {
|
|
524
524
|
extractedTypeDefs.push(schema);
|
|
525
|
-
extractedResolvers.push(getResolversFromSchema(schema));
|
|
525
|
+
extractedResolvers.push(getResolversFromSchema(schema, true));
|
|
526
526
|
extractedSchemaExtensions.push(extractExtensionsFromSchema(schema));
|
|
527
527
|
}
|
|
528
528
|
return makeExecutableSchema({
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graphql-tools/schema",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.4.0-alpha-bdd7f13e.0",
|
|
4
4
|
"description": "A set of utils for faster development of GraphQL tools",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"peerDependencies": {
|
|
7
7
|
"graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@graphql-tools/merge": "8.2.
|
|
11
|
-
"@graphql-tools/utils": "8.
|
|
10
|
+
"@graphql-tools/merge": "8.2.15-alpha-bdd7f13e.0",
|
|
11
|
+
"@graphql-tools/utils": "8.7.0-alpha-bdd7f13e.0",
|
|
12
12
|
"tslib": "^2.4.0",
|
|
13
13
|
"value-or-promise": "1.0.11"
|
|
14
14
|
},
|