Package graphql.execution
Class FieldCollectorParameters
- java.lang.Object
-
- graphql.execution.FieldCollectorParameters
-
public class FieldCollectorParameters extends java.lang.Object
Internal because FieldCollector is internal.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
FieldCollectorParameters.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Map<java.lang.String,FragmentDefinition>
getFragmentsByName()
GraphQLContext
getGraphQLContext()
GraphQLSchema
getGraphQLSchema()
GraphQLObjectType
getObjectType()
java.util.Map<java.lang.String,java.lang.Object>
getVariables()
static FieldCollectorParameters.Builder
newParameters()
-
-
-
Method Detail
-
getGraphQLSchema
public GraphQLSchema getGraphQLSchema()
-
getFragmentsByName
public java.util.Map<java.lang.String,FragmentDefinition> getFragmentsByName()
-
getVariables
public java.util.Map<java.lang.String,java.lang.Object> getVariables()
-
getObjectType
public GraphQLObjectType getObjectType()
-
getGraphQLContext
public GraphQLContext getGraphQLContext()
-
newParameters
public static FieldCollectorParameters.Builder newParameters()
-
-