Package graphql.schema.idl
Class FieldWiringEnvironment
- java.lang.Object
-
- graphql.schema.idl.WiringEnvironment
-
- graphql.schema.idl.FieldWiringEnvironment
-
@PublicApi public class FieldWiringEnvironment extends WiringEnvironment
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.List<GraphQLAppliedDirective>
appliedDirectives
private java.util.List<GraphQLDirective>
directives
private FieldDefinition
fieldDefinition
private GraphQLOutputType
fieldType
private TypeDefinition
parentType
-
Constructor Summary
Constructors Constructor Description FieldWiringEnvironment(TypeDefinitionRegistry registry, TypeDefinition parentType, FieldDefinition fieldDefinition, GraphQLOutputType fieldType, java.util.List<GraphQLDirective> directives, java.util.List<GraphQLAppliedDirective> appliedDirectives)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<GraphQLAppliedDirective>
getAppliedDirectives()
java.util.List<GraphQLDirective>
getDirectives()
FieldDefinition
getFieldDefinition()
GraphQLOutputType
getFieldType()
TypeDefinition
getParentType()
-
Methods inherited from class graphql.schema.idl.WiringEnvironment
getRegistry
-
-
-
-
Field Detail
-
fieldDefinition
private final FieldDefinition fieldDefinition
-
parentType
private final TypeDefinition parentType
-
fieldType
private final GraphQLOutputType fieldType
-
directives
private final java.util.List<GraphQLDirective> directives
-
appliedDirectives
private final java.util.List<GraphQLAppliedDirective> appliedDirectives
-
-
Constructor Detail
-
FieldWiringEnvironment
FieldWiringEnvironment(TypeDefinitionRegistry registry, TypeDefinition parentType, FieldDefinition fieldDefinition, GraphQLOutputType fieldType, java.util.List<GraphQLDirective> directives, java.util.List<GraphQLAppliedDirective> appliedDirectives)
-
-
Method Detail
-
getFieldDefinition
public FieldDefinition getFieldDefinition()
-
getParentType
public TypeDefinition getParentType()
-
getFieldType
public GraphQLOutputType getFieldType()
-
getDirectives
public java.util.List<GraphQLDirective> getDirectives()
-
getAppliedDirectives
public java.util.List<GraphQLAppliedDirective> getAppliedDirectives()
-
-