File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -1728,7 +1728,8 @@ function completeObjectValue(
17281728 incrementalContext : IncrementalContext | undefined ,
17291729 deferMap : ReadonlyMap < DeferUsage , DeferredFragmentRecord > | undefined ,
17301730) : PromiseOrValue < GraphQLWrappedResult < ObjMap < unknown > > > {
1731- const abortSignal = exeContext . validatedExecutionArgs . abortSignal ;
1731+ const validatedExecutionArgs = exeContext . validatedExecutionArgs ;
1732+ const abortSignal = validatedExecutionArgs . abortSignal ;
17321733 if ( abortSignal ?. aborted ) {
17331734 throw locatedError (
17341735 new Error ( abortSignal . reason ) ,
@@ -1743,7 +1744,7 @@ function completeObjectValue(
17431744 if ( returnType . isTypeOf ) {
17441745 const isTypeOf = returnType . isTypeOf (
17451746 result ,
1746- exeContext . validatedExecutionArgs . contextValue ,
1747+ validatedExecutionArgs . contextValue ,
17471748 info ,
17481749 ) ;
17491750
You can’t perform that action at this time.
0 commit comments