diff --git a/src/execution/execute.js b/src/execution/execute.js index ddb7233561..4ba95459a1 100644 --- a/src/execution/execute.js +++ b/src/execution/execute.js @@ -582,7 +582,7 @@ function resolveField( rootValue: exeContext.rootValue, operation: exeContext.operation, variableValues: exeContext.variableValues, - executionPath: exePath + path: exePath }; // Get the resolve function, regardless of if its result is normal diff --git a/src/type/definition.js b/src/type/definition.js index a1378be480..22d705ce2e 100644 --- a/src/type/definition.js +++ b/src/type/definition.js @@ -483,7 +483,7 @@ export type GraphQLResolveInfo = { rootValue: mixed, operation: OperationDefinition, variableValues: { [variableName: string]: mixed }, - executionPath: Array + path: Array } export type GraphQLFieldConfig = {