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