Uses of Class
graphql.schema.GraphQLAppliedDirective.Builder
-
Packages that use GraphQLAppliedDirective.Builder Package Description graphql.schema -
-
Uses of GraphQLAppliedDirective.Builder in graphql.schema
Methods in graphql.schema that return GraphQLAppliedDirective.Builder Modifier and Type Method Description GraphQLAppliedDirective.Builder
GraphQLAppliedDirective.Builder. argument(GraphQLAppliedDirectiveArgument argument)
GraphQLAppliedDirective.Builder
GraphQLAppliedDirective.Builder. argument(GraphQLAppliedDirectiveArgument.Builder builder)
Same effect as the argument(GraphQLAppliedDirectiveArgument).GraphQLAppliedDirective.Builder
GraphQLAppliedDirective.Builder. argument(java.util.function.UnaryOperator<GraphQLAppliedDirectiveArgument.Builder> builderFunction)
Take an argument builder in a function definition and apply.GraphQLAppliedDirective.Builder
GraphQLAppliedDirective.Builder. clearArguments()
This is used to clear all the arguments in the builder so far.GraphQLAppliedDirective.Builder
GraphQLAppliedDirective.Builder. definition(Directive definition)
static GraphQLAppliedDirective.Builder
GraphQLAppliedDirective. newDirective()
static GraphQLAppliedDirective.Builder
GraphQLAppliedDirective. newDirective(GraphQLAppliedDirective existing)
GraphQLAppliedDirective.Builder
GraphQLAppliedDirective.Builder. replaceArguments(java.util.List<GraphQLAppliedDirectiveArgument> arguments)
Methods in graphql.schema with parameters of type GraphQLAppliedDirective.Builder Modifier and Type Method Description B
GraphqlDirectivesContainerTypeBuilder. withAppliedDirective(GraphQLAppliedDirective.Builder builder)
GraphQLSchema.Builder
GraphQLSchema.Builder. withSchemaAppliedDirective(GraphQLAppliedDirective.Builder builder)
Method parameters in graphql.schema with type arguments of type GraphQLAppliedDirective.Builder Modifier and Type Method Description GraphQLAppliedDirective
GraphQLAppliedDirective. transform(java.util.function.Consumer<GraphQLAppliedDirective.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.
-