Skip to content

Commit 3ec964a

Browse files
authored
Merge pull request #4 from graphql-java/rename-execution-type-info
rename ExecutionTypeInfo
2 parents 60d139f + 2f260bf commit 3ec964a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

content/documentation/master/data-fetching.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ system designer is how you will use context in your fetchers if at all. Some pe
177177
data 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
181181
the 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``
195195
allows 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
198198
path. This can be useful for logging and debugging queries.
199199

200200
There are also helper methods there to help you get the underlying type name of non null and list wrapped types.

0 commit comments

Comments
 (0)