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