Uses of Class
graphql.schema.GraphQLDirective.Builder
-
Packages that use GraphQLDirective.Builder Package Description graphql.execution.directives graphql.schema -
-
Uses of GraphQLDirective.Builder in graphql.execution.directives
Methods in graphql.execution.directives with parameters of type GraphQLDirective.Builder Modifier and Type Method Description private void
DirectivesResolver. buildArguments(GraphQLDirective.Builder directiveBuilder, GraphQLCodeRegistry codeRegistry, GraphQLDirective protoType, Directive fieldDirective, java.util.Map<java.lang.String,java.lang.Object> variables, GraphQLContext graphQLContext, java.util.Locale locale)
-
Uses of GraphQLDirective.Builder in graphql.schema
Methods in graphql.schema that return GraphQLDirective.Builder Modifier and Type Method Description GraphQLDirective.Builder
GraphQLDirective.Builder. argument(GraphQLArgument argument)
GraphQLDirective.Builder
GraphQLDirective.Builder. argument(GraphQLArgument.Builder builder)
Same effect as the argument(GraphQLArgument).GraphQLDirective.Builder
GraphQLDirective.Builder. argument(java.util.function.UnaryOperator<GraphQLArgument.Builder> builderFunction)
Take an argument builder in a function definition and apply.GraphQLDirective.Builder
GraphQLDirective.Builder. clearArguments()
This is used to clear all the arguments in the builder so far.GraphQLDirective.Builder
GraphQLDirective.Builder. clearValidLocations()
GraphQLDirective.Builder
GraphQLDirective.Builder. definition(DirectiveDefinition definition)
GraphQLDirective.Builder
GraphQLDirective.Builder. description(java.lang.String description)
GraphQLDirective.Builder
GraphQLDirective.Builder. name(java.lang.String name)
static GraphQLDirective.Builder
GraphQLDirective. newDirective()
static GraphQLDirective.Builder
GraphQLDirective. newDirective(GraphQLDirective existing)
GraphQLDirective.Builder
GraphQLDirective.Builder. repeatable(boolean repeatable)
GraphQLDirective.Builder
GraphQLDirective.Builder. replaceArguments(java.util.List<GraphQLArgument> arguments)
GraphQLDirective.Builder
GraphQLDirective.Builder. validLocation(Introspection.DirectiveLocation validLocation)
GraphQLDirective.Builder
GraphQLDirective.Builder. validLocations(Introspection.DirectiveLocation... validLocations)
Method parameters in graphql.schema with type arguments of type GraphQLDirective.Builder Modifier and Type Method Description GraphQLDirective
GraphQLDirective. transform(java.util.function.Consumer<GraphQLDirective.Builder> builderConsumer)
This helps you transform the current GraphQLDirective into another one by starting a builder with all the current values and allows you to transform it how you want.
-