@graphql-tools/utils 10.11.0-alpha-20251110221631-660bf6ce9a0d6dd7507be7dea89d47674489320f → 10.11.0-alpha-20251113162628-fc5dd9a67f15da93da0f992ac3e357a9431c42bc
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/cjs/errors.js +16 -8
- package/cjs/mergeIncrementalResult.js +4 -25
- package/esm/errors.js +15 -9
- package/esm/mergeIncrementalResult.js +4 -25
- package/package.json +2 -1
- package/typings/errors.d.cts +8 -1
- package/typings/errors.d.ts +8 -1
package/cjs/errors.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.toJSON = void 0;
|
|
3
4
|
exports.isGraphQLErrorLike = isGraphQLErrorLike;
|
|
4
5
|
exports.createGraphQLError = createGraphQLError;
|
|
5
6
|
exports.getSchemaCoordinate = getSchemaCoordinate;
|
|
@@ -17,31 +18,38 @@ const possibleGraphQLErrorProperties = [
|
|
|
17
18
|
'name',
|
|
18
19
|
'stack',
|
|
19
20
|
'extensions',
|
|
21
|
+
'coordinate',
|
|
20
22
|
];
|
|
21
23
|
function isGraphQLErrorLike(error) {
|
|
22
24
|
return (error != null &&
|
|
23
25
|
typeof error === 'object' &&
|
|
24
26
|
Object.keys(error).every(key => possibleGraphQLErrorProperties.includes(key)));
|
|
25
27
|
}
|
|
28
|
+
const toJSON = function toJSON() {
|
|
29
|
+
const formattedError = graphql_1.GraphQLError.prototype.toJSON.apply(this);
|
|
30
|
+
// @ts-expect-error coordinate is readonly
|
|
31
|
+
formattedError.coordinate = this.coordinate;
|
|
32
|
+
return formattedError;
|
|
33
|
+
};
|
|
34
|
+
exports.toJSON = toJSON;
|
|
26
35
|
function createGraphQLError(message, options) {
|
|
27
36
|
if (options?.originalError &&
|
|
28
37
|
!(options.originalError instanceof Error) &&
|
|
29
38
|
isGraphQLErrorLike(options.originalError)) {
|
|
30
39
|
options.originalError = createGraphQLError(options.originalError.message, options.originalError);
|
|
31
40
|
}
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
}
|
|
39
|
-
if (options?.coordinate != null && !error.coordinate) {
|
|
41
|
+
// To avoid type error on graphql <16, we have to use an any type here
|
|
42
|
+
const Constructor = graphql_1.GraphQLError;
|
|
43
|
+
const error = graphql_1.versionInfo.major >= 16
|
|
44
|
+
? new Constructor(message, options)
|
|
45
|
+
: new Constructor(message, options?.nodes, options?.source, options?.positions, options?.path, options?.originalError, options?.extensions);
|
|
46
|
+
if (options?.coordinate) {
|
|
40
47
|
Object.defineProperty(error, 'coordinate', {
|
|
41
48
|
value: options.coordinate,
|
|
42
49
|
enumerable: true,
|
|
43
50
|
configurable: true,
|
|
44
51
|
});
|
|
52
|
+
error.toJSON = exports.toJSON;
|
|
45
53
|
}
|
|
46
54
|
return error;
|
|
47
55
|
}
|
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.mergeIncrementalResult = mergeIncrementalResult;
|
|
4
|
-
const
|
|
4
|
+
const merge_1 = require("dset/merge");
|
|
5
5
|
function mergeIncrementalResult({ incrementalResult, executionResult, }) {
|
|
6
6
|
const path = ['data', ...(incrementalResult.path ?? [])];
|
|
7
7
|
if (incrementalResult.items) {
|
|
8
8
|
for (const item of incrementalResult.items) {
|
|
9
|
-
|
|
9
|
+
(0, merge_1.dset)(executionResult, path, item);
|
|
10
10
|
// Increment the last path segment (the array index) to merge the next item at the next index
|
|
11
11
|
path[path.length - 1]++;
|
|
12
12
|
}
|
|
13
13
|
}
|
|
14
14
|
if (incrementalResult.data) {
|
|
15
|
-
|
|
15
|
+
(0, merge_1.dset)(executionResult, path, incrementalResult.data);
|
|
16
16
|
}
|
|
17
17
|
if (incrementalResult.errors) {
|
|
18
18
|
executionResult.errors = executionResult.errors || [];
|
|
19
19
|
executionResult.errors.push(...incrementalResult.errors);
|
|
20
20
|
}
|
|
21
21
|
if (incrementalResult.extensions) {
|
|
22
|
-
|
|
22
|
+
(0, merge_1.dset)(executionResult, 'extensions', incrementalResult.extensions);
|
|
23
23
|
}
|
|
24
24
|
if (incrementalResult.incremental) {
|
|
25
25
|
incrementalResult.incremental.forEach(incrementalSubResult => {
|
|
@@ -30,24 +30,3 @@ function mergeIncrementalResult({ incrementalResult, executionResult, }) {
|
|
|
30
30
|
});
|
|
31
31
|
}
|
|
32
32
|
}
|
|
33
|
-
function setObjectKeyPath(obj, keyPath, value) {
|
|
34
|
-
let current = obj;
|
|
35
|
-
let i;
|
|
36
|
-
for (i = 0; i < keyPath.length - 1; i++) {
|
|
37
|
-
const key = keyPath[i];
|
|
38
|
-
if (key === '__proto__' || key === 'constructor' || key === 'prototype') {
|
|
39
|
-
return;
|
|
40
|
-
}
|
|
41
|
-
if (current[key] == null) {
|
|
42
|
-
// Determine if the next key is a number to create an array, otherwise create an object
|
|
43
|
-
current[key] = typeof keyPath[i + 1] === 'number' ? [] : {};
|
|
44
|
-
}
|
|
45
|
-
current = current[key];
|
|
46
|
-
}
|
|
47
|
-
const finalKey = keyPath[i];
|
|
48
|
-
if (finalKey === '__proto__' || finalKey === 'constructor' || finalKey === 'prototype') {
|
|
49
|
-
return;
|
|
50
|
-
}
|
|
51
|
-
const existingValue = current[finalKey];
|
|
52
|
-
current[finalKey] = existingValue != null ? (0, mergeDeep_js_1.mergeDeep)([existingValue, value]) : value;
|
|
53
|
-
}
|
package/esm/errors.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { locatedError as _locatedError, GraphQLError, versionInfo
|
|
1
|
+
import { locatedError as _locatedError, GraphQLError, versionInfo } from 'graphql';
|
|
2
2
|
const possibleGraphQLErrorProperties = [
|
|
3
3
|
'message',
|
|
4
4
|
'locations',
|
|
@@ -10,31 +10,37 @@ const possibleGraphQLErrorProperties = [
|
|
|
10
10
|
'name',
|
|
11
11
|
'stack',
|
|
12
12
|
'extensions',
|
|
13
|
+
'coordinate',
|
|
13
14
|
];
|
|
14
15
|
export function isGraphQLErrorLike(error) {
|
|
15
16
|
return (error != null &&
|
|
16
17
|
typeof error === 'object' &&
|
|
17
18
|
Object.keys(error).every(key => possibleGraphQLErrorProperties.includes(key)));
|
|
18
19
|
}
|
|
20
|
+
export const toJSON = function toJSON() {
|
|
21
|
+
const formattedError = GraphQLError.prototype.toJSON.apply(this);
|
|
22
|
+
// @ts-expect-error coordinate is readonly
|
|
23
|
+
formattedError.coordinate = this.coordinate;
|
|
24
|
+
return formattedError;
|
|
25
|
+
};
|
|
19
26
|
export function createGraphQLError(message, options) {
|
|
20
27
|
if (options?.originalError &&
|
|
21
28
|
!(options.originalError instanceof Error) &&
|
|
22
29
|
isGraphQLErrorLike(options.originalError)) {
|
|
23
30
|
options.originalError = createGraphQLError(options.originalError.message, options.originalError);
|
|
24
31
|
}
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
}
|
|
32
|
-
if (options?.coordinate != null && !error.coordinate) {
|
|
32
|
+
// To avoid type error on graphql <16, we have to use an any type here
|
|
33
|
+
const Constructor = GraphQLError;
|
|
34
|
+
const error = versionInfo.major >= 16
|
|
35
|
+
? new Constructor(message, options)
|
|
36
|
+
: new Constructor(message, options?.nodes, options?.source, options?.positions, options?.path, options?.originalError, options?.extensions);
|
|
37
|
+
if (options?.coordinate) {
|
|
33
38
|
Object.defineProperty(error, 'coordinate', {
|
|
34
39
|
value: options.coordinate,
|
|
35
40
|
enumerable: true,
|
|
36
41
|
configurable: true,
|
|
37
42
|
});
|
|
43
|
+
error.toJSON = toJSON;
|
|
38
44
|
}
|
|
39
45
|
return error;
|
|
40
46
|
}
|
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { dset } from 'dset/merge';
|
|
2
2
|
export function mergeIncrementalResult({ incrementalResult, executionResult, }) {
|
|
3
3
|
const path = ['data', ...(incrementalResult.path ?? [])];
|
|
4
4
|
if (incrementalResult.items) {
|
|
5
5
|
for (const item of incrementalResult.items) {
|
|
6
|
-
|
|
6
|
+
dset(executionResult, path, item);
|
|
7
7
|
// Increment the last path segment (the array index) to merge the next item at the next index
|
|
8
8
|
path[path.length - 1]++;
|
|
9
9
|
}
|
|
10
10
|
}
|
|
11
11
|
if (incrementalResult.data) {
|
|
12
|
-
|
|
12
|
+
dset(executionResult, path, incrementalResult.data);
|
|
13
13
|
}
|
|
14
14
|
if (incrementalResult.errors) {
|
|
15
15
|
executionResult.errors = executionResult.errors || [];
|
|
16
16
|
executionResult.errors.push(...incrementalResult.errors);
|
|
17
17
|
}
|
|
18
18
|
if (incrementalResult.extensions) {
|
|
19
|
-
|
|
19
|
+
dset(executionResult, 'extensions', incrementalResult.extensions);
|
|
20
20
|
}
|
|
21
21
|
if (incrementalResult.incremental) {
|
|
22
22
|
incrementalResult.incremental.forEach(incrementalSubResult => {
|
|
@@ -27,24 +27,3 @@ export function mergeIncrementalResult({ incrementalResult, executionResult, })
|
|
|
27
27
|
});
|
|
28
28
|
}
|
|
29
29
|
}
|
|
30
|
-
function setObjectKeyPath(obj, keyPath, value) {
|
|
31
|
-
let current = obj;
|
|
32
|
-
let i;
|
|
33
|
-
for (i = 0; i < keyPath.length - 1; i++) {
|
|
34
|
-
const key = keyPath[i];
|
|
35
|
-
if (key === '__proto__' || key === 'constructor' || key === 'prototype') {
|
|
36
|
-
return;
|
|
37
|
-
}
|
|
38
|
-
if (current[key] == null) {
|
|
39
|
-
// Determine if the next key is a number to create an array, otherwise create an object
|
|
40
|
-
current[key] = typeof keyPath[i + 1] === 'number' ? [] : {};
|
|
41
|
-
}
|
|
42
|
-
current = current[key];
|
|
43
|
-
}
|
|
44
|
-
const finalKey = keyPath[i];
|
|
45
|
-
if (finalKey === '__proto__' || finalKey === 'constructor' || finalKey === 'prototype') {
|
|
46
|
-
return;
|
|
47
|
-
}
|
|
48
|
-
const existingValue = current[finalKey];
|
|
49
|
-
current[finalKey] = existingValue != null ? mergeDeep([existingValue, value]) : value;
|
|
50
|
-
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graphql-tools/utils",
|
|
3
|
-
"version": "10.11.0-alpha-
|
|
3
|
+
"version": "10.11.0-alpha-20251113162628-fc5dd9a67f15da93da0f992ac3e357a9431c42bc",
|
|
4
4
|
"description": "Common package containing utils and types for GraphQL tools",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"peerDependencies": {
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
"@graphql-typed-document-node/core": "^3.1.1",
|
|
11
11
|
"@whatwg-node/promise-helpers": "^1.0.0",
|
|
12
12
|
"cross-inspect": "1.0.1",
|
|
13
|
+
"dset": "^3.1.4",
|
|
13
14
|
"tslib": "^2.4.0"
|
|
14
15
|
},
|
|
15
16
|
"repository": {
|
package/typings/errors.d.cts
CHANGED
|
@@ -11,7 +11,6 @@ interface GraphQLErrorOptions {
|
|
|
11
11
|
extensions?: any;
|
|
12
12
|
coordinate?: string;
|
|
13
13
|
}
|
|
14
|
-
export declare function isGraphQLErrorLike(error: any): boolean;
|
|
15
14
|
declare module 'graphql' {
|
|
16
15
|
interface GraphQLError {
|
|
17
16
|
/**
|
|
@@ -19,7 +18,15 @@ declare module 'graphql' {
|
|
|
19
18
|
*/
|
|
20
19
|
readonly coordinate?: string;
|
|
21
20
|
}
|
|
21
|
+
interface GraphQLFormattedError {
|
|
22
|
+
/**
|
|
23
|
+
* An optional schema coordinate (e.g. "MyType.myField") associated with this error.
|
|
24
|
+
*/
|
|
25
|
+
readonly coordinate?: string;
|
|
26
|
+
}
|
|
22
27
|
}
|
|
28
|
+
export declare function isGraphQLErrorLike(error: any): boolean;
|
|
29
|
+
export declare const toJSON: GraphQLError['toJSON'];
|
|
23
30
|
export declare function createGraphQLError(message: string, options?: GraphQLErrorOptions): GraphQLError;
|
|
24
31
|
type SchemaCoordinateInfo = {
|
|
25
32
|
fieldName: string;
|
package/typings/errors.d.ts
CHANGED
|
@@ -11,7 +11,6 @@ interface GraphQLErrorOptions {
|
|
|
11
11
|
extensions?: any;
|
|
12
12
|
coordinate?: string;
|
|
13
13
|
}
|
|
14
|
-
export declare function isGraphQLErrorLike(error: any): boolean;
|
|
15
14
|
declare module 'graphql' {
|
|
16
15
|
interface GraphQLError {
|
|
17
16
|
/**
|
|
@@ -19,7 +18,15 @@ declare module 'graphql' {
|
|
|
19
18
|
*/
|
|
20
19
|
readonly coordinate?: string;
|
|
21
20
|
}
|
|
21
|
+
interface GraphQLFormattedError {
|
|
22
|
+
/**
|
|
23
|
+
* An optional schema coordinate (e.g. "MyType.myField") associated with this error.
|
|
24
|
+
*/
|
|
25
|
+
readonly coordinate?: string;
|
|
26
|
+
}
|
|
22
27
|
}
|
|
28
|
+
export declare function isGraphQLErrorLike(error: any): boolean;
|
|
29
|
+
export declare const toJSON: GraphQLError['toJSON'];
|
|
23
30
|
export declare function createGraphQLError(message: string, options?: GraphQLErrorOptions): GraphQLError;
|
|
24
31
|
type SchemaCoordinateInfo = {
|
|
25
32
|
fieldName: string;
|