We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c31ba0d commit eba89d4Copy full SHA for eba89d4
src/execution/execute.js
@@ -582,7 +582,7 @@ function resolveField(
582
rootValue: exeContext.rootValue,
583
operation: exeContext.operation,
584
variableValues: exeContext.variableValues,
585
- executionPath: exePath
+ path: exePath
586
};
587
588
// Get the resolve function, regardless of if its result is normal
src/type/definition.js
@@ -483,7 +483,7 @@ export type GraphQLResolveInfo = {
483
rootValue: mixed,
484
operation: OperationDefinition,
485
variableValues: { [variableName: string]: mixed },
486
- executionPath: Array<string | number>
+ path: Array<string | number>
487
}
488
489
export type GraphQLFieldConfig = {
0 commit comments