Uses of Class
graphql.schema.GraphQLAppliedDirectiveArgument.Builder
-
Packages that use GraphQLAppliedDirectiveArgument.Builder Package Description graphql.schema -
-
Uses of GraphQLAppliedDirectiveArgument.Builder in graphql.schema
Methods in graphql.schema that return GraphQLAppliedDirectiveArgument.Builder Modifier and Type Method Description GraphQLAppliedDirectiveArgument.Builder
GraphQLAppliedDirectiveArgument.Builder. clearValue()
Removes the value to represent a missing value (which is different from null)GraphQLAppliedDirectiveArgument.Builder
GraphQLAppliedDirectiveArgument.Builder. definition(Argument definition)
GraphQLAppliedDirectiveArgument.Builder
GraphQLAppliedDirectiveArgument.Builder. inputValueWithState(@NotNull InputValueWithState value)
static GraphQLAppliedDirectiveArgument.Builder
GraphQLAppliedDirectiveArgument. newArgument()
static GraphQLAppliedDirectiveArgument.Builder
GraphQLAppliedDirectiveArgument. newArgument(GraphQLAppliedDirectiveArgument existing)
GraphQLAppliedDirectiveArgument.Builder
GraphQLAppliedDirectiveArgument.Builder. type(GraphQLInputType type)
GraphQLAppliedDirectiveArgument.Builder
GraphQLAppliedDirectiveArgument.Builder. valueLiteral(@NotNull Value<?> value)
Sets a literal AST value as the arguments valueGraphQLAppliedDirectiveArgument.Builder
GraphQLAppliedDirectiveArgument.Builder. valueProgrammatic(@Nullable java.lang.Object value)
Methods in graphql.schema with parameters of type GraphQLAppliedDirectiveArgument.Builder Modifier and Type Method Description GraphQLAppliedDirective.Builder
GraphQLAppliedDirective.Builder. argument(GraphQLAppliedDirectiveArgument.Builder builder)
Same effect as the argument(GraphQLAppliedDirectiveArgument).Method parameters in graphql.schema with type arguments of type GraphQLAppliedDirectiveArgument.Builder Modifier and Type Method Description GraphQLAppliedDirective.Builder
GraphQLAppliedDirective.Builder. argument(java.util.function.UnaryOperator<GraphQLAppliedDirectiveArgument.Builder> builderFunction)
Take an argument builder in a function definition and apply.GraphQLAppliedDirectiveArgument
GraphQLAppliedDirectiveArgument. transform(java.util.function.Consumer<GraphQLAppliedDirectiveArgument.Builder> builderConsumer)
This helps you transform the current GraphQLArgument into another one by starting a builder with all the current values and allows you to transform it how you want.
-