@@ -35,7 +35,7 @@ export interface VariableValues {
35
35
36
36
interface VariableValueSource {
37
37
readonly signature : GraphQLVariableSignature ;
38
- readonly value : unknown ;
38
+ readonly value ? : unknown ;
39
39
}
40
40
41
41
type VariableValuesOrErrors =
@@ -104,10 +104,7 @@ function coerceVariableValues(
104
104
if ( ! Object . hasOwn ( inputs , varName ) ) {
105
105
const defaultValue = varSignature . defaultValue ;
106
106
if ( defaultValue ) {
107
- sources [ varName ] = {
108
- signature : varSignature ,
109
- value : undefined ,
110
- } ;
107
+ sources [ varName ] = { signature : varSignature } ;
111
108
coerced [ varName ] = coerceDefaultValue ( defaultValue , varType ) ;
112
109
} else if ( isNonNullType ( varType ) ) {
113
110
const varTypeStr = inspect ( varType ) ;
@@ -118,10 +115,7 @@ function coerceVariableValues(
118
115
) ,
119
116
) ;
120
117
} else {
121
- sources [ varName ] = {
122
- signature : varSignature ,
123
- value : undefined ,
124
- } ;
118
+ sources [ varName ] = { signature : varSignature } ;
125
119
}
126
120
continue ;
127
121
}
@@ -244,7 +238,9 @@ export function experimentalGetArgumentValues(
244
238
245
239
if ( valueNode . kind === Kind . VARIABLE ) {
246
240
const variableName = valueNode . name . value ;
247
- const scopedVariableValues = fragmentVariablesValues ?. sources [ variableName ]
241
+ const scopedVariableValues = fragmentVariablesValues ?. sources [
242
+ variableName
243
+ ]
248
244
? fragmentVariablesValues
249
245
: variableValues ;
250
246
if (
0 commit comments