Uses of Class
graphql.schema.GraphQLArgument.Builder
-
Packages that use GraphQLArgument.Builder Package Description graphql.schema -
-
Uses of GraphQLArgument.Builder in graphql.schema
Methods in graphql.schema that return GraphQLArgument.Builder Modifier and Type Method Description GraphQLArgument.Builder
GraphQLArgument.Builder. clearDefaultValue()
Removes the defaultValue to represent a missing default value (which is different from null)GraphQLArgument.Builder
GraphQLArgument.Builder. clearDirectives()
GraphQLArgument.Builder
GraphQLArgument.Builder. clearValue()
Deprecated.useGraphQLAppliedDirectiveArgument
methods insteadGraphQLArgument.Builder
GraphQLArgument.Builder. defaultValue(java.lang.Object defaultValue)
Deprecated.GraphQLArgument.Builder
GraphQLArgument.Builder. defaultValueLiteral(@NotNull Value defaultValue)
GraphQLArgument.Builder
GraphQLArgument.Builder. defaultValueProgrammatic(@Nullable java.lang.Object defaultValue)
GraphQLArgument.Builder
GraphQLArgument.Builder. definition(InputValueDefinition definition)
GraphQLArgument.Builder
GraphQLArgument.Builder. deprecate(java.lang.String deprecationReason)
GraphQLArgument.Builder
GraphQLArgument.Builder. description(java.lang.String description)
GraphQLArgument.Builder
GraphQLArgument.Builder. name(java.lang.String name)
static GraphQLArgument.Builder
GraphQLArgument. newArgument()
static GraphQLArgument.Builder
GraphQLArgument. newArgument(GraphQLArgument existing)
GraphQLArgument.Builder
GraphQLArgument.Builder. replaceDirectives(java.util.List<GraphQLDirective> directives)
GraphQLArgument.Builder
GraphQLArgument.Builder. type(GraphQLInputType type)
GraphQLArgument.Builder
GraphQLArgument.Builder. value(@Nullable java.lang.Object value)
Deprecated.GraphQLArgument.Builder
GraphQLArgument.Builder. valueLiteral(@NotNull Value value)
Deprecated.useGraphQLAppliedDirectiveArgument
methods insteadGraphQLArgument.Builder
GraphQLArgument.Builder. valueProgrammatic(@Nullable java.lang.Object value)
Deprecated.useGraphQLAppliedDirectiveArgument
methods insteadGraphQLArgument.Builder
GraphQLArgument.Builder. withDirective(GraphQLDirective directive)
GraphQLArgument.Builder
GraphQLArgument.Builder. withDirective(GraphQLDirective.Builder builder)
GraphQLArgument.Builder
GraphQLArgument.Builder. withDirectives(GraphQLDirective... directives)
Methods in graphql.schema with parameters of type GraphQLArgument.Builder Modifier and Type Method Description GraphQLDirective.Builder
GraphQLDirective.Builder. argument(GraphQLArgument.Builder builder)
Same effect as the argument(GraphQLArgument).GraphQLFieldDefinition.Builder
GraphQLFieldDefinition.Builder. argument(GraphQLArgument.Builder builder)
Same effect as the argument(GraphQLArgument).Method parameters in graphql.schema with type arguments of type GraphQLArgument.Builder Modifier and Type Method Description GraphQLDirective.Builder
GraphQLDirective.Builder. argument(java.util.function.UnaryOperator<GraphQLArgument.Builder> builderFunction)
Take an argument builder in a function definition and apply.GraphQLFieldDefinition.Builder
GraphQLFieldDefinition.Builder. argument(java.util.function.UnaryOperator<GraphQLArgument.Builder> builderFunction)
Take an argument builder in a function definition and apply.GraphQLArgument
GraphQLArgument. transform(java.util.function.Consumer<GraphQLArgument.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.
-