Uses of Class
graphql.schema.GraphQLInputObjectField.Builder
Packages that use GraphQLInputObjectField.Builder
-
Uses of GraphQLInputObjectField.Builder in graphql.schema
Methods in graphql.schema that return GraphQLInputObjectField.BuilderModifier and TypeMethodDescriptionGraphQLInputObjectField.Builder.clearDefaultValue()GraphQLInputObjectField.Builder.clearDirectives()GraphQLInputObjectField.Builder.defaultValue(Object defaultValue) Deprecated.GraphQLInputObjectField.Builder.defaultValueLiteral(Value defaultValue) GraphQLInputObjectField.Builder.defaultValueProgrammatic(Object defaultValue) GraphQLInputObjectField.Builder.definition(InputValueDefinition definition) GraphQLInputObjectField.Builder.description(String description) GraphQLInputObjectField.newInputObjectField()GraphQLInputObjectField.newInputObjectField(GraphQLInputObjectField existing) GraphQLInputObjectField.Builder.replaceDirectives(List<GraphQLDirective> directives) GraphQLInputObjectField.Builder.type(GraphQLInputObjectType.Builder type) GraphQLInputObjectField.Builder.type(GraphQLInputType type) GraphQLInputObjectField.Builder.withDirective(GraphQLDirective directive) GraphQLInputObjectField.Builder.withDirective(GraphQLDirective.Builder builder) GraphQLInputObjectField.Builder.withDirectives(GraphQLDirective... directives) Methods in graphql.schema with parameters of type GraphQLInputObjectField.BuilderModifier and TypeMethodDescriptionGraphQLInputObjectType.Builder.field(GraphQLInputObjectField.Builder builder) Same effect as the field(GraphQLFieldDefinition).Method parameters in graphql.schema with type arguments of type GraphQLInputObjectField.BuilderModifier and TypeMethodDescriptionGraphQLInputObjectType.Builder.field(UnaryOperator<GraphQLInputObjectField.Builder> builderFunction) Take a field builder in a function definition and apply.GraphQLInputObjectField.transform(Consumer<GraphQLInputObjectField.Builder> builderConsumer) This helps you transform the current GraphQLInputObjectField into another one by starting a builder with all the current values and allows you to transform it how you want.
defaultValueLiteral(Value)