@graphql-tools/url-loader 7.9.25 → 7.10.0-alpha-b3ffd406.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.d.ts CHANGED
@@ -95,6 +95,10 @@ export interface LoadFromUrlOptions extends BaseLoaderOptions, Partial<Introspec
95
95
  * Connection Parameters for WebSockets connection
96
96
  */
97
97
  connectionParams?: any;
98
+ /**
99
+ * Enable Batching
100
+ */
101
+ batch?: boolean;
98
102
  }
99
103
  /**
100
104
  * This loader loads a schema from a URL. The loaded schema is a fully-executable,
package/index.js CHANGED
@@ -841,6 +841,7 @@ class UrlLoader {
841
841
  source.schema = wrap.wrapSchema({
842
842
  schema: source.schema,
843
843
  executor,
844
+ batch: options === null || options === void 0 ? void 0 : options.batch,
844
845
  });
845
846
  }
846
847
  return [source];
package/index.mjs CHANGED
@@ -817,6 +817,7 @@ class UrlLoader {
817
817
  source.schema = wrapSchema({
818
818
  schema: source.schema,
819
819
  executor,
820
+ batch: options === null || options === void 0 ? void 0 : options.batch,
820
821
  });
821
822
  }
822
823
  return [source];
package/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "@graphql-tools/url-loader",
3
- "version": "7.9.25",
3
+ "version": "7.10.0-alpha-b3ffd406.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/delegate": "8.7.11",
11
- "@graphql-tools/utils": "8.6.13",
12
- "@graphql-tools/wrap": "8.4.20",
10
+ "@graphql-tools/delegate": "8.7.12-alpha-b3ffd406.0",
11
+ "@graphql-tools/utils": "8.7.0-alpha-b3ffd406.0",
12
+ "@graphql-tools/wrap": "8.4.21-alpha-b3ffd406.0",
13
13
  "@n1ru4l/graphql-live-query": "^0.9.0",
14
14
  "@types/ws": "^8.0.0",
15
15
  "cross-undici-fetch": "^0.4.0",