File tree 2 files changed +5
-5
lines changed 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -1092,7 +1092,7 @@ function getStreamUsage(
1092
1092
const streamedFieldGroup : FieldGroup = fieldGroup . map ( ( fieldDetails ) => ( {
1093
1093
node : fieldDetails . node ,
1094
1094
deferUsage : undefined ,
1095
- fragmentVariables : fieldDetails . fragmentVariableValues ,
1095
+ fragmentVariablesValues : fieldDetails . fragmentVariableValues ,
1096
1096
} ) ) ;
1097
1097
1098
1098
const streamUsage = {
Original file line number Diff line number Diff line change @@ -209,7 +209,7 @@ export function experimentalGetArgumentValues(
209
209
node : FieldNode | DirectiveNode | FragmentSpreadNode ,
210
210
argDefs : ReadonlyArray < GraphQLArgument | GraphQLVariableSignature > ,
211
211
variableValues : Maybe < VariableValues > ,
212
- fragmentVariables ?: Maybe < VariableValues > ,
212
+ fragmentVariablesValues ?: Maybe < VariableValues > ,
213
213
) : { [ argument : string ] : unknown } {
214
214
const coercedValues : { [ argument : string ] : unknown } = { } ;
215
215
@@ -244,8 +244,8 @@ export function experimentalGetArgumentValues(
244
244
245
245
if ( valueNode . kind === Kind . VARIABLE ) {
246
246
const variableName = valueNode . name . value ;
247
- const scopedVariableValues = fragmentVariables ?. sources [ variableName ]
248
- ? fragmentVariables
247
+ const scopedVariableValues = fragmentVariablesValues ?. sources [ variableName ]
248
+ ? fragmentVariablesValues
249
249
: variableValues ;
250
250
if (
251
251
scopedVariableValues == null ||
@@ -280,7 +280,7 @@ export function experimentalGetArgumentValues(
280
280
valueNode ,
281
281
argType ,
282
282
variableValues ,
283
- fragmentVariables ,
283
+ fragmentVariablesValues ,
284
284
) ;
285
285
if ( coercedValue === undefined ) {
286
286
// Note: ValuesOfCorrectTypeRule validation should catch this before
You can’t perform that action at this time.
0 commit comments