File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -752,7 +752,7 @@ function executeField(
752
752
const args = experimentalGetArgumentValues (
753
753
fieldGroup [ 0 ] . node ,
754
754
fieldDef . args ,
755
- fieldGroup [ 0 ] . fragmentVariableValues ?? exeContext . variableValues ,
755
+ fieldGroup [ 0 ] . scopedVariableValues ?? exeContext . variableValues ,
756
756
) ;
757
757
758
758
// The resolve function's optional third argument is a context value that
@@ -1060,7 +1060,7 @@ function getStreamUsage(
1060
1060
const stream = getDirectiveValues (
1061
1061
GraphQLStreamDirective ,
1062
1062
fieldGroup [ 0 ] . node ,
1063
- fieldGroup [ 0 ] . fragmentVariableValues ?? exeContext . variableValues ,
1063
+ fieldGroup [ 0 ] . scopedVariableValues ?? exeContext . variableValues ,
1064
1064
) ;
1065
1065
1066
1066
if ( ! stream ) {
@@ -1089,7 +1089,7 @@ function getStreamUsage(
1089
1089
const streamedFieldGroup : FieldGroup = fieldGroup . map ( ( fieldDetails ) => ( {
1090
1090
node : fieldDetails . node ,
1091
1091
deferUsage : undefined ,
1092
- fragmentVariableValues : fieldDetails . fragmentVariableValues ,
1092
+ scopedVariableValues : fieldDetails . scopedVariableValues ,
1093
1093
} ) ) ;
1094
1094
1095
1095
const streamUsage = {
You can’t perform that action at this time.
0 commit comments