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
-
Field Summary
Fields Modifier and Type Field Description private java.util.Map<java.lang.String,FragmentDefinition>
fragmentsByName
private GraphQLContext
graphQLContext
private GraphQLSchema
graphQLSchema
private GraphQLObjectType
objectType
private java.util.Map<java.lang.String,java.lang.Object>
variables
-
Constructor Summary
Constructors Modifier Constructor Description private
FieldCollectorParameters(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()
GraphQLContext
getGraphQLContext()
GraphQLSchema
getGraphQLSchema()
GraphQLObjectType
getObjectType()
java.util.Map<java.lang.String,java.lang.Object>
getVariables()
static FieldCollectorParameters.Builder
newParameters()
-
-
-
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()
-
-