File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
content/documentation/master Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -177,7 +177,7 @@ system designer is how you will use context in your fetchers if at all. Some pe
177177data fetchers automatically and hence don't need to use this.
178178
179179
180- * `` ExecutionTypeInfo getFieldTypeInfo ()`` - the field type information is a catch all bucket of field type information that is built up as
180+ * `` ExecutionStepInfo getExecutionStepInfo ()`` - the field type information is a catch all bucket of field type information that is built up as
181181the query is executed. The following section explains more on this.
182182
183183* `` DataFetchingFieldSelectionSet getSelectionSet() `` - the selection set represents the child fields that have been "selected" under neath the
@@ -189,12 +189,12 @@ query.
189189
190190
191191
192- ## The interesting parts of ExecutionTypeInfo
192+ ## The interesting parts of ExecutionStepInfo
193193
194- The execution of a graphql query creates a call tree of fields and their types. `` graphql.execution.ExecutionTypeInfo .getParentTypeInfo ``
194+ The execution of a graphql query creates a call tree of fields and their types. `` graphql.execution.ExecutionStepInfo .getParentTypeInfo ``
195195allows you to navigate upwards and see what types and fields led to the current field execution.
196196
197- Since this forms a tree path during execution, the `` graphql.execution.ExecutionTypeInfo .getPath `` method returns the representation of that
197+ Since this forms a tree path during execution, the `` graphql.execution.ExecutionStepInfo .getPath `` method returns the representation of that
198198path. This can be useful for logging and debugging queries.
199199
200200There are also helper methods there to help you get the underlying type name of non null and list wrapped types.
You can’t perform that action at this time.
0 commit comments