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 voidDirectivesResolver. 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.BuilderGraphQLDirective.Builder. argument(GraphQLArgument argument)GraphQLDirective.BuilderGraphQLDirective.Builder. argument(GraphQLArgument.Builder builder)Same effect as the argument(GraphQLArgument).GraphQLDirective.BuilderGraphQLDirective.Builder. argument(java.util.function.UnaryOperator<GraphQLArgument.Builder> builderFunction)Take an argument builder in a function definition and apply.GraphQLDirective.BuilderGraphQLDirective.Builder. clearArguments()This is used to clear all the arguments in the builder so far.GraphQLDirective.BuilderGraphQLDirective.Builder. clearValidLocations()GraphQLDirective.BuilderGraphQLDirective.Builder. definition(DirectiveDefinition definition)GraphQLDirective.BuilderGraphQLDirective.Builder. description(java.lang.String description)GraphQLDirective.BuilderGraphQLDirective.Builder. name(java.lang.String name)static GraphQLDirective.BuilderGraphQLDirective. newDirective()static GraphQLDirective.BuilderGraphQLDirective. newDirective(GraphQLDirective existing)GraphQLDirective.BuilderGraphQLDirective.Builder. repeatable(boolean repeatable)GraphQLDirective.BuilderGraphQLDirective.Builder. replaceArguments(java.util.List<GraphQLArgument> arguments)GraphQLDirective.BuilderGraphQLDirective.Builder. validLocation(Introspection.DirectiveLocation validLocation)GraphQLDirective.BuilderGraphQLDirective.Builder. validLocations(Introspection.DirectiveLocation... validLocations)Method parameters in graphql.schema with type arguments of type GraphQLDirective.Builder Modifier and Type Method Description GraphQLDirectiveGraphQLDirective. 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.
-