Interface SchemaTransformer
-
- All Known Implementing Classes:
NonNullMapper,PublisherAdapter
public interface SchemaTransformer
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default graphql.schema.GraphQLAppliedDirectiveArgumenttransformArgument(graphql.schema.GraphQLAppliedDirectiveArgument argument, DirectiveArgument directiveArgument, OperationMapper operationMapper, BuildContext buildContext)default graphql.schema.GraphQLArgumenttransformArgument(graphql.schema.GraphQLArgument argument, DirectiveArgument directiveArgument, OperationMapper operationMapper, BuildContext buildContext)default graphql.schema.GraphQLArgumenttransformArgument(graphql.schema.GraphQLArgument argument, OperationArgument operationArgument, OperationMapper operationMapper, BuildContext buildContext)default graphql.schema.GraphQLAppliedDirectivetransformDirective(graphql.schema.GraphQLAppliedDirective directive, Directive directiveModel, OperationMapper operationMapper, BuildContext buildContext)default graphql.schema.GraphQLDirectivetransformDirective(graphql.schema.GraphQLDirective directive, Directive directiveModel, OperationMapper operationMapper, BuildContext buildContext)default graphql.schema.GraphQLFieldDefinitiontransformField(graphql.schema.GraphQLFieldDefinition field, Operation operation, OperationMapper operationMapper, BuildContext buildContext)default graphql.schema.GraphQLInputObjectFieldtransformInputField(graphql.schema.GraphQLInputObjectField field, InputField inputField, OperationMapper operationMapper, BuildContext buildContext)
-
-
-
Method Detail
-
transformField
default graphql.schema.GraphQLFieldDefinition transformField(graphql.schema.GraphQLFieldDefinition field, Operation operation, OperationMapper operationMapper, BuildContext buildContext)
-
transformInputField
default graphql.schema.GraphQLInputObjectField transformInputField(graphql.schema.GraphQLInputObjectField field, InputField inputField, OperationMapper operationMapper, BuildContext buildContext)
-
transformArgument
default graphql.schema.GraphQLArgument transformArgument(graphql.schema.GraphQLArgument argument, OperationArgument operationArgument, OperationMapper operationMapper, BuildContext buildContext)
-
transformArgument
default graphql.schema.GraphQLArgument transformArgument(graphql.schema.GraphQLArgument argument, DirectiveArgument directiveArgument, OperationMapper operationMapper, BuildContext buildContext)
-
transformArgument
default graphql.schema.GraphQLAppliedDirectiveArgument transformArgument(graphql.schema.GraphQLAppliedDirectiveArgument argument, DirectiveArgument directiveArgument, OperationMapper operationMapper, BuildContext buildContext)
-
transformDirective
default graphql.schema.GraphQLDirective transformDirective(graphql.schema.GraphQLDirective directive, Directive directiveModel, OperationMapper operationMapper, BuildContext buildContext)
-
transformDirective
default graphql.schema.GraphQLAppliedDirective transformDirective(graphql.schema.GraphQLAppliedDirective directive, Directive directiveModel, OperationMapper operationMapper, BuildContext buildContext)
-
-