Package graphql.introspection
Interface IntrospectionDataFetchingEnvironment
-
- All Known Subinterfaces:
DataFetchingEnvironment
- All Known Implementing Classes:
DataFetchingEnvironmentImpl
,DelegatingDataFetchingEnvironment
public interface IntrospectionDataFetchingEnvironment
Extracted fromDataFetchingEnvironment
to only capture the data really needed forIntrospection
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <T> T
getArgument(java.lang.String name)
java.util.Map<java.lang.String,java.lang.Object>
getArguments()
GraphQLSchema
getGraphQLSchema()
GraphQLType
getParentType()
<T> T
getSource()
-
-
-
Method Detail
-
getSource
<T> T getSource()
-
getArguments
java.util.Map<java.lang.String,java.lang.Object> getArguments()
-
getGraphQLSchema
GraphQLSchema getGraphQLSchema()
-
getArgument
<T> T getArgument(java.lang.String name)
-
getParentType
GraphQLType getParentType()
-
-