File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -715,7 +715,7 @@ function executeField(
715
715
const result = resolveFn ( source , args , contextValue , info ) ;
716
716
717
717
if ( isPromise ( result ) ) {
718
- return completePromise (
718
+ return completePromisedValue (
719
719
exeContext ,
720
720
returnType ,
721
721
fieldNodes ,
@@ -912,7 +912,7 @@ function completeValue(
912
912
) ;
913
913
}
914
914
915
- async function completePromise (
915
+ async function completePromisedValue (
916
916
exeContext : ExecutionContext ,
917
917
returnType : GraphQLOutputType ,
918
918
fieldNodes : ReadonlyArray < FieldNode > ,
@@ -1182,7 +1182,7 @@ function completeListItemValue(
1182
1182
) : boolean {
1183
1183
if ( isPromise ( item ) ) {
1184
1184
completedResults . push (
1185
- completePromise (
1185
+ completePromisedValue (
1186
1186
exeContext ,
1187
1187
itemType ,
1188
1188
fieldNodes ,
@@ -1911,7 +1911,7 @@ function executeStreamField(
1911
1911
exeContext,
1912
1912
} ) ;
1913
1913
if ( isPromise ( item ) ) {
1914
- const completedItems = completePromise (
1914
+ const completedItems = completePromisedValue (
1915
1915
exeContext ,
1916
1916
itemType ,
1917
1917
fieldNodes ,
You can’t perform that action at this time.
0 commit comments