Uses of Class
graphql.execution.directives.QueryAppliedDirectiveArgument.Builder
-
Packages that use QueryAppliedDirectiveArgument.Builder Package Description graphql.execution.directives -
-
Uses of QueryAppliedDirectiveArgument.Builder in graphql.execution.directives
Methods in graphql.execution.directives that return QueryAppliedDirectiveArgument.Builder Modifier and Type Method Description QueryAppliedDirectiveArgument.Builder
QueryAppliedDirectiveArgument.Builder. clearValue()
Removes the value to represent a missing value (which is different from null)QueryAppliedDirectiveArgument.Builder
QueryAppliedDirectiveArgument.Builder. definition(Argument definition)
QueryAppliedDirectiveArgument.Builder
QueryAppliedDirectiveArgument.Builder. inputValueWithState(@NotNull InputValueWithState value)
static QueryAppliedDirectiveArgument.Builder
QueryAppliedDirectiveArgument. newArgument()
static QueryAppliedDirectiveArgument.Builder
QueryAppliedDirectiveArgument. newArgument(QueryAppliedDirectiveArgument existing)
QueryAppliedDirectiveArgument.Builder
QueryAppliedDirectiveArgument.Builder. type(GraphQLInputType type)
QueryAppliedDirectiveArgument.Builder
QueryAppliedDirectiveArgument.Builder. valueLiteral(@NotNull Value<?> value)
Sets a literal AST value as the arguments valueQueryAppliedDirectiveArgument.Builder
QueryAppliedDirectiveArgument.Builder. valueProgrammatic(@Nullable java.lang.Object value)
Methods in graphql.execution.directives with parameters of type QueryAppliedDirectiveArgument.Builder Modifier and Type Method Description QueryAppliedDirective.Builder
QueryAppliedDirective.Builder. argument(QueryAppliedDirectiveArgument.Builder builder)
Same effect as the argument(GraphQLAppliedDirectiveArgument).Method parameters in graphql.execution.directives with type arguments of type QueryAppliedDirectiveArgument.Builder Modifier and Type Method Description QueryAppliedDirective.Builder
QueryAppliedDirective.Builder. argument(java.util.function.UnaryOperator<QueryAppliedDirectiveArgument.Builder> builderFunction)
Take an argument builder in a function definition and apply.QueryAppliedDirectiveArgument
QueryAppliedDirectiveArgument. transform(java.util.function.Consumer<QueryAppliedDirectiveArgument.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.
-