@depup/graphql-tools__batch-execute 10.0.8-depup.0 → 10.0.9-depup.12

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/README.md CHANGED
@@ -13,10 +13,16 @@ npm install @depup/graphql-tools__batch-execute
13
13
 
14
14
  | Field | Value |
15
15
  |-------|-------|
16
- | Original | [@graphql-tools/batch-execute](https://www.npmjs.com/package/@graphql-tools/batch-execute) @ 10.0.8 |
17
- | Processed | 2026-04-03 |
16
+ | Original | [@graphql-tools/batch-execute](https://www.npmjs.com/package/@graphql-tools/batch-execute) @ 10.0.9 |
17
+ | Processed | 2026-08-13 |
18
18
  | Smoke test | passed |
19
- | Deps updated | 0 |
19
+ | Deps updated | 1 |
20
+
21
+ ## Dependency Changes
22
+
23
+ | Dependency | From | To |
24
+ |------------|------|-----|
25
+ | @graphql-tools/utils | ^11.0.0 | ^12.0.0 |
20
26
 
21
27
  ---
22
28
 
package/changes.json CHANGED
@@ -1,5 +1,10 @@
1
1
  {
2
- "bumped": {},
3
- "timestamp": "2026-04-03T12:19:55.315Z",
4
- "totalUpdated": 0
2
+ "bumped": {
3
+ "@graphql-tools/utils": {
4
+ "from": "^11.0.0",
5
+ "to": "^12.0.0"
6
+ }
7
+ },
8
+ "timestamp": "2026-08-13T00:26:53.886Z",
9
+ "totalUpdated": 1
5
10
  }
package/dist/index.cjs CHANGED
@@ -313,6 +313,11 @@ function splitResult({ data, errors }, numResults) {
313
313
  }
314
314
  }
315
315
  }
316
+ for (let i = 0; i < numResults; i++) {
317
+ if (splitResults[i] == null) {
318
+ splitResults[i] = { data: {} };
319
+ }
320
+ }
316
321
  return splitResults;
317
322
  }
318
323
 
package/dist/index.js CHANGED
@@ -307,6 +307,11 @@ function splitResult({ data, errors }, numResults) {
307
307
  }
308
308
  }
309
309
  }
310
+ for (let i = 0; i < numResults; i++) {
311
+ if (splitResults[i] == null) {
312
+ splitResults[i] = { data: {} };
313
+ }
314
+ }
310
315
  return splitResults;
311
316
  }
312
317
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@depup/graphql-tools__batch-execute",
3
- "version": "10.0.8-depup.0",
3
+ "version": "10.0.9-depup.12",
4
4
  "type": "module",
5
5
  "description": "A set of utils for faster development of GraphQL tools (with updated dependencies)",
6
6
  "repository": {
@@ -39,14 +39,14 @@
39
39
  "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
40
40
  },
41
41
  "dependencies": {
42
- "@graphql-tools/utils": "^11.0.0",
42
+ "@graphql-tools/utils": "^12.0.0",
43
43
  "@whatwg-node/promise-helpers": "^1.3.2",
44
44
  "dataloader": "^2.2.3",
45
45
  "tslib": "^2.8.1"
46
46
  },
47
47
  "devDependencies": {
48
48
  "graphql": "^16.12.0",
49
- "pkgroll": "2.27.0"
49
+ "pkgroll": "2.27.1"
50
50
  },
51
51
  "sideEffects": false,
52
52
  "keywords": [
@@ -58,11 +58,16 @@
58
58
  "patched"
59
59
  ],
60
60
  "depup": {
61
- "changes": {},
62
- "depsUpdated": 0,
61
+ "changes": {
62
+ "@graphql-tools/utils": {
63
+ "from": "^11.0.0",
64
+ "to": "^12.0.0"
65
+ }
66
+ },
67
+ "depsUpdated": 1,
63
68
  "originalPackage": "@graphql-tools/batch-execute",
64
- "originalVersion": "10.0.8",
65
- "processedAt": "2026-04-03T12:19:59.027Z",
69
+ "originalVersion": "10.0.9",
70
+ "processedAt": "2026-08-13T00:26:59.509Z",
66
71
  "smokeTest": "passed"
67
72
  }
68
73
  }