1
1
import { inspect } from '../jsutils/inspect.js' ;
2
2
import type { Maybe } from '../jsutils/Maybe.js' ;
3
- import type { ObjMap } from '../jsutils/ObjMap.js ' ;
3
+ import type { ObjMap , ReadOnlyObjMap } from '../jsutils/ObjMap' ;
4
4
import { printPathArray } from '../jsutils/printPathArray.js' ;
5
5
6
6
import { GraphQLError } from '../error/GraphQLError.js' ;
@@ -13,7 +13,7 @@ import type {
13
13
import { Kind } from '../language/kinds.js' ;
14
14
import { print } from '../language/printer.js' ;
15
15
16
- import type { GraphQLField } from '../type/definition.js' ;
16
+ import type { GraphQLField , GraphQLInputType } from '../type/definition.js' ;
17
17
import { isInputType , isNonNullType } from '../type/definition.js' ;
18
18
import type { GraphQLDirective } from '../type/directives.js' ;
19
19
import type { GraphQLSchema } from '../type/schema.js' ;
@@ -25,9 +25,20 @@ import {
25
25
} from '../utilities/coerceInputValue.js' ;
26
26
import { typeFromAST } from '../utilities/typeFromAST.js' ;
27
27
28
- type CoercedVariableValues =
29
- | { errors : ReadonlyArray < GraphQLError > ; coerced ?: never }
30
- | { coerced : { [ variable : string ] : unknown } ; errors ?: never } ;
28
+ export interface VariableValues {
29
+ readonly sources : ReadOnlyObjMap < VariableValueSource > ;
30
+ readonly coerced : ReadOnlyObjMap < unknown > ;
31
+ }
32
+
33
+ interface VariableValueSource {
34
+ readonly variable : VariableDefinitionNode ;
35
+ readonly type : GraphQLInputType ;
36
+ readonly value : unknown ;
37
+ }
38
+
39
+ type VariableValuesOrErrors =
40
+ | { variableValues : VariableValues ; errors ?: never }
41
+ | { errors : ReadonlyArray < GraphQLError > ; variableValues ?: never } ;
31
42
32
43
/**
33
44
* Prepares an object map of variableValues of the correct type based on the
@@ -43,11 +54,11 @@ export function getVariableValues(
43
54
varDefNodes : ReadonlyArray < VariableDefinitionNode > ,
44
55
inputs : { readonly [ variable : string ] : unknown } ,
45
56
options ?: { maxErrors ?: number } ,
46
- ) : CoercedVariableValues {
47
- const errors = [ ] ;
57
+ ) : VariableValuesOrErrors {
58
+ const errors : Array < GraphQLError > = [ ] ;
48
59
const maxErrors = options ?. maxErrors ;
49
60
try {
50
- const coerced = coerceVariableValues (
61
+ const variableValues = coerceVariableValues (
51
62
schema ,
52
63
varDefNodes ,
53
64
inputs ,
@@ -62,7 +73,7 @@ export function getVariableValues(
62
73
) ;
63
74
64
75
if ( errors . length === 0 ) {
65
- return { coerced } ;
76
+ return { variableValues } ;
66
77
}
67
78
} catch ( error ) {
68
79
errors . push ( error ) ;
@@ -76,8 +87,9 @@ function coerceVariableValues(
76
87
varDefNodes : ReadonlyArray < VariableDefinitionNode > ,
77
88
inputs : { readonly [ variable : string ] : unknown } ,
78
89
onError : ( error : GraphQLError ) => void ,
79
- ) : { [ variable : string ] : unknown } {
80
- const coercedValues : { [ variable : string ] : unknown } = { } ;
90
+ ) : VariableValues {
91
+ const sources : ObjMap < VariableValueSource > = Object . create ( null ) ;
92
+ const coerced : ObjMap < unknown > = Object . create ( null ) ;
81
93
for ( const varDefNode of varDefNodes ) {
82
94
const varName = varDefNode . variable . name . value ;
83
95
const varType = typeFromAST ( schema , varDefNode . type ) ;
@@ -95,11 +107,14 @@ function coerceVariableValues(
95
107
}
96
108
97
109
if ( ! Object . hasOwn ( inputs , varName ) ) {
98
- if ( varDefNode . defaultValue ) {
99
- coercedValues [ varName ] = coerceInputLiteral (
100
- varDefNode . defaultValue ,
101
- varType ,
102
- ) ;
110
+ const defaultValue = varDefNode . defaultValue ;
111
+ if ( defaultValue ) {
112
+ sources [ varName ] = {
113
+ variable : varDefNode ,
114
+ type : varType ,
115
+ value : undefined ,
116
+ } ;
117
+ coerced [ varName ] = coerceInputLiteral ( defaultValue , varType ) ;
103
118
} else if ( isNonNullType ( varType ) ) {
104
119
onError (
105
120
new GraphQLError (
@@ -122,7 +137,8 @@ function coerceVariableValues(
122
137
continue ;
123
138
}
124
139
125
- coercedValues [ varName ] = coerceInputValue (
140
+ sources [ varName ] = { variable : varDefNode , type : varType , value } ;
141
+ coerced [ varName ] = coerceInputValue (
126
142
value ,
127
143
varType ,
128
144
( path , invalidValue , error ) => {
@@ -141,7 +157,7 @@ function coerceVariableValues(
141
157
) ;
142
158
}
143
159
144
- return coercedValues ;
160
+ return { sources , coerced } ;
145
161
}
146
162
147
163
/**
@@ -155,7 +171,7 @@ function coerceVariableValues(
155
171
export function getArgumentValues (
156
172
def : GraphQLField < unknown , unknown > | GraphQLDirective ,
157
173
node : FieldNode | DirectiveNode ,
158
- variableValues ?: Maybe < ObjMap < unknown > > ,
174
+ variableValues ?: Maybe < VariableValues > ,
159
175
) : { [ argument : string ] : unknown } {
160
176
const coercedValues : { [ argument : string ] : unknown } = { } ;
161
177
@@ -191,7 +207,7 @@ export function getArgumentValues(
191
207
const variableName = valueNode . name . value ;
192
208
if (
193
209
variableValues == null ||
194
- ! Object . hasOwn ( variableValues , variableName )
210
+ ! Object . hasOwn ( variableValues . coerced , variableName )
195
211
) {
196
212
if ( argDef . defaultValue ) {
197
213
coercedValues [ name ] = coerceDefaultValue (
@@ -207,7 +223,7 @@ export function getArgumentValues(
207
223
}
208
224
continue ;
209
225
}
210
- isNull = variableValues [ variableName ] == null ;
226
+ isNull = variableValues . coerced [ variableName ] == null ;
211
227
}
212
228
213
229
if ( isNull && isNonNullType ( argType ) ) {
@@ -248,7 +264,7 @@ export function getArgumentValues(
248
264
export function getDirectiveValues (
249
265
directiveDef : GraphQLDirective ,
250
266
node : { readonly directives ?: ReadonlyArray < DirectiveNode > | undefined } ,
251
- variableValues ?: Maybe < ObjMap < unknown > > ,
267
+ variableValues ?: Maybe < VariableValues > ,
252
268
) : undefined | { [ argument : string ] : unknown } {
253
269
const directiveNode = node . directives ?. find (
254
270
( directive ) => directive . name . value === directiveDef . name ,
0 commit comments