public interface AnnotationsDirectiveWiring
| Modifier and Type | Method and Description |
|---|---|
default graphql.schema.GraphQLArgument |
onArgument(AnnotationsWiringEnvironment environment)
This is called when an argument is encountered, which gives the schema directive a chance to modify the shape and behaviour
of that DSL element
|
default graphql.schema.GraphQLEnumType |
onEnum(AnnotationsWiringEnvironment environment)
This is called when an enum is encountered, which gives the schema directive a chance to modify the shape and behaviour
of that DSL element
|
default graphql.schema.GraphQLEnumValueDefinition |
onEnumValue(AnnotationsWiringEnvironment environment)
This is called when an enum value is encountered, which gives the schema directive a chance to modify the shape and behaviour
of that DSL element
|
default graphql.schema.GraphQLFieldDefinition |
onField(AnnotationsWiringEnvironment environment)
This is called when a field is encountered, which gives the schema directive a chance to modify the shape and behaviour
of that DSL element
|
default graphql.schema.GraphQLInputObjectField |
onInputObjectField(AnnotationsWiringEnvironment environment)
This is called when an input object field is encountered, which gives the schema directive a chance to modify the shape and behaviour
of that DSL element
|
default graphql.schema.GraphQLInputObjectType |
onInputObjectType(AnnotationsWiringEnvironment environment)
This is called when an input object is encountered, which gives the schema directive a chance to modify the shape and behaviour
of that DSL element
|
default graphql.schema.GraphQLInterfaceType |
onInterface(AnnotationsWiringEnvironment environment)
This is called when an interface is encountered, which gives the schema directive a chance to modify the shape and behaviour
of that DSL element
|
default graphql.schema.GraphQLObjectType |
onObject(AnnotationsWiringEnvironment environment)
This is called when an object is encountered, which gives the schema directive a chance to modify the shape and behaviour
of that DSL element
|
default graphql.schema.GraphQLScalarType |
onScalar(AnnotationsWiringEnvironment environment)
This is called when a custom scalar is encountered, which gives the schema directive a chance to modify the shape and behaviour
of that DSL element
|
default graphql.schema.GraphQLUnionType |
onUnion(AnnotationsWiringEnvironment environment)
This is called when a union is encountered, which gives the schema directive a chance to modify the shape and behaviour
of that DSL element
|
default graphql.schema.GraphQLObjectType onObject(AnnotationsWiringEnvironment environment)
environment - the wiring elementdefault graphql.schema.GraphQLFieldDefinition onField(AnnotationsWiringEnvironment environment)
environment - the wiring elementdefault graphql.schema.GraphQLArgument onArgument(AnnotationsWiringEnvironment environment)
environment - the wiring elementdefault graphql.schema.GraphQLInterfaceType onInterface(AnnotationsWiringEnvironment environment)
environment - the wiring elementdefault graphql.schema.GraphQLUnionType onUnion(AnnotationsWiringEnvironment environment)
environment - the wiring elementdefault graphql.schema.GraphQLEnumType onEnum(AnnotationsWiringEnvironment environment)
environment - the wiring elementdefault graphql.schema.GraphQLEnumValueDefinition onEnumValue(AnnotationsWiringEnvironment environment)
environment - the wiring elementdefault graphql.schema.GraphQLScalarType onScalar(AnnotationsWiringEnvironment environment)
environment - the wiring elementdefault graphql.schema.GraphQLInputObjectType onInputObjectType(AnnotationsWiringEnvironment environment)
environment - the wiring elementdefault graphql.schema.GraphQLInputObjectField onInputObjectField(AnnotationsWiringEnvironment environment)
environment - the wiring element