Package graphql.execution
Class FieldCollectorParameters
- java.lang.Object
-
- graphql.execution.FieldCollectorParameters
-
public class FieldCollectorParameters extends java.lang.ObjectInternal because FieldCollector is internal.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classFieldCollectorParameters.Builder
-
Field Summary
Fields Modifier and Type Field Description private java.util.Map<java.lang.String,FragmentDefinition>fragmentsByNameprivate GraphQLContextgraphQLContextprivate GraphQLSchemagraphQLSchemaprivate GraphQLObjectTypeobjectTypeprivate java.util.Map<java.lang.String,java.lang.Object>variables
-
Constructor Summary
Constructors Modifier Constructor Description privateFieldCollectorParameters(FieldCollectorParameters.Builder builder)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Map<java.lang.String,FragmentDefinition>getFragmentsByName()GraphQLContextgetGraphQLContext()GraphQLSchemagetGraphQLSchema()GraphQLObjectTypegetObjectType()java.util.Map<java.lang.String,java.lang.Object>getVariables()static FieldCollectorParameters.BuildernewParameters()
-
-
-
Field Detail
-
graphQLSchema
private final GraphQLSchema graphQLSchema
-
fragmentsByName
private final java.util.Map<java.lang.String,FragmentDefinition> fragmentsByName
-
variables
private final java.util.Map<java.lang.String,java.lang.Object> variables
-
objectType
private final GraphQLObjectType objectType
-
graphQLContext
private final GraphQLContext graphQLContext
-
-
Constructor Detail
-
FieldCollectorParameters
private FieldCollectorParameters(FieldCollectorParameters.Builder builder)
-
-
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()
-
-