Skip to content

Commit b268b87

Browse files
committed
fix
1 parent 84b2657 commit b268b87

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/execution/execute.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ export interface ExecutionContext {
106106
errors: Array<GraphQLError>;
107107
}
108108

109-
export type GraphQLFieldExecutor = (
109+
export type GraphQLFieldExecutor = (
110110
exeContext: ExecutionContext,
111111
parentType: GraphQLObjectType,
112112
source: unknown,
@@ -282,6 +282,7 @@ export function buildExecutionContext(
282282
fieldExecutor?: Maybe<GraphQLFieldExecutor>,
283283
): ReadonlyArray<GraphQLError> | ExecutionContext {
284284
let operation: OperationDefinitionNode | undefined;
285+
285286
const fragments: ObjMap<FragmentDefinitionNode> = Object.create(null);
286287
for (const definition of document.definitions) {
287288
switch (definition.kind) {

0 commit comments

Comments
 (0)