Uses of Class
graphql.language.InputValueDefinition
Packages that use InputValueDefinition
Package
Description
-
Uses of InputValueDefinition in graphql.introspection
Methods in graphql.introspection that return types with arguments of type InputValueDefinitionModifier and TypeMethodDescriptionprivate List
<InputValueDefinition> IntrospectionResultToSchema.createInputValueDefinitions
(List<Map<String, Object>> args) -
Uses of InputValueDefinition in graphql.language
Fields in graphql.language with type parameters of type InputValueDefinitionModifier and TypeFieldDescriptionprivate com.google.common.collect.ImmutableList
<InputValueDefinition> DirectiveDefinition.Builder.inputValueDefinitions
private final com.google.common.collect.ImmutableList
<InputValueDefinition> DirectiveDefinition.inputValueDefinitions
private com.google.common.collect.ImmutableList
<InputValueDefinition> FieldDefinition.Builder.inputValueDefinitions
private final com.google.common.collect.ImmutableList
<InputValueDefinition> FieldDefinition.inputValueDefinitions
private com.google.common.collect.ImmutableList
<InputValueDefinition> InputObjectTypeDefinition.Builder.inputValueDefinitions
private final com.google.common.collect.ImmutableList
<InputValueDefinition> InputObjectTypeDefinition.inputValueDefinitions
private com.google.common.collect.ImmutableList
<InputValueDefinition> InputObjectTypeExtensionDefinition.Builder.inputValueDefinitions
Methods in graphql.language that return InputValueDefinitionModifier and TypeMethodDescriptionInputValueDefinition.Builder.build()
InputValueDefinition.deepCopy()
InputValueDefinition.transform
(Consumer<InputValueDefinition.Builder> builderConsumer) InputValueDefinition.withNewChildren
(NodeChildrenContainer newChildren) Methods in graphql.language that return types with arguments of type InputValueDefinitionModifier and TypeMethodDescriptionDirectiveDefinition.getInputValueDefinitions()
FieldDefinition.getInputValueDefinitions()
InputObjectTypeDefinition.getInputValueDefinitions()
AstPrinter.inputValueDefinition()
PrettyAstPrinter.inputValueDefinition()
Methods in graphql.language with parameters of type InputValueDefinitionModifier and TypeMethodDescriptionDirectiveDefinition.Builder.inputValueDefinition
(InputValueDefinition inputValueDefinition) FieldDefinition.Builder.inputValueDefinition
(InputValueDefinition inputValueDefinition) InputObjectTypeDefinition.Builder.inputValueDefinition
(InputValueDefinition inputValueDefinition) InputObjectTypeExtensionDefinition.Builder.inputValueDefinition
(InputValueDefinition inputValueDefinition) NodeVisitor.visitInputValueDefinition
(InputValueDefinition node, TraverserContext<Node> data) NodeVisitorStub.visitInputValueDefinition
(InputValueDefinition node, TraverserContext<Node> context) Method parameters in graphql.language with type arguments of type InputValueDefinitionModifier and TypeMethodDescriptionDirectiveDefinition.Builder.inputValueDefinitions
(List<InputValueDefinition> inputValueDefinitions) FieldDefinition.Builder.inputValueDefinitions
(List<InputValueDefinition> inputValueDefinitions) InputObjectTypeDefinition.Builder.inputValueDefinitions
(List<InputValueDefinition> inputValueDefinitions) InputObjectTypeExtensionDefinition.Builder.inputValueDefinitions
(List<InputValueDefinition> inputValueDefinitions) Constructors in graphql.language with parameters of type InputValueDefinitionConstructor parameters in graphql.language with type arguments of type InputValueDefinitionModifierConstructorDescriptionprotected
DirectiveDefinition
(String name, boolean repeatable, Description description, List<InputValueDefinition> inputValueDefinitions, List<DirectiveLocation> directiveLocations, SourceLocation sourceLocation, List<Comment> comments, IgnoredChars ignoredChars, Map<String, String> additionalData) protected
FieldDefinition
(String name, Type type, List<InputValueDefinition> inputValueDefinitions, List<Directive> directives, Description description, SourceLocation sourceLocation, List<Comment> comments, IgnoredChars ignoredChars, Map<String, String> additionalData) -
Uses of InputValueDefinition in graphql.parser
Methods in graphql.parser that return InputValueDefinitionModifier and TypeMethodDescriptionprotected InputValueDefinition
GraphqlAntlrToLanguage.createInputValueDefinition
(GraphqlParser.InputValueDefinitionContext ctx) Methods in graphql.parser that return types with arguments of type InputValueDefinitionModifier and TypeMethodDescriptionprotected List
<InputValueDefinition> GraphqlAntlrToLanguage.createInputValueDefinitions
(List<GraphqlParser.InputValueDefinitionContext> defs) -
Uses of InputValueDefinition in graphql.schema
Fields in graphql.schema declared as InputValueDefinitionModifier and TypeFieldDescriptionprivate InputValueDefinition
GraphQLArgument.Builder.definition
private final InputValueDefinition
GraphQLArgument.definition
private InputValueDefinition
GraphQLInputObjectField.Builder.definition
private final InputValueDefinition
GraphQLInputObjectField.definition
Methods in graphql.schema that return InputValueDefinitionModifier and TypeMethodDescriptionGraphQLArgument.getDefinition()
GraphQLInputObjectField.getDefinition()
Methods in graphql.schema with parameters of type InputValueDefinitionModifier and TypeMethodDescriptionGraphQLArgument.Builder.definition
(InputValueDefinition definition) GraphQLInputObjectField.Builder.definition
(InputValueDefinition definition) Constructors in graphql.schema with parameters of type InputValueDefinitionModifierConstructorDescriptionprivate
GraphQLArgument
(String name, String description, GraphQLInputType type, InputValueWithState defaultValue, InputValueWithState value, InputValueDefinition definition, List<GraphQLDirective> directives, List<GraphQLAppliedDirective> appliedDirectives, String deprecationReason) private
GraphQLInputObjectField
(String name, String description, GraphQLInputType type, InputValueWithState defaultValue, List<GraphQLDirective> directives, List<GraphQLAppliedDirective> appliedDirectives, InputValueDefinition definition, String deprecationReason) -
Uses of InputValueDefinition in graphql.schema.diff
Methods in graphql.schema.diff with parameters of type InputValueDefinitionModifier and TypeMethodDescriptionprivate void
SchemaDiff.checkFieldArg
(DiffCtx ctx, TypeDefinition oldDef, FieldDefinition oldField, InputValueDefinition oldArg, InputValueDefinition newArg) Method parameters in graphql.schema.diff with type arguments of type InputValueDefinitionModifier and TypeMethodDescriptionprivate void
SchemaDiff.checkFieldArguments
(DiffCtx ctx, TypeDefinition oldDef, FieldDefinition oldField, List<InputValueDefinition> oldInputValueDefinitions, List<InputValueDefinition> newInputValueDefinitions) private void
SchemaDiff.checkInputFields
(DiffCtx ctx, TypeDefinition old, List<InputValueDefinition> oldIVD, List<InputValueDefinition> newIVD) -
Uses of InputValueDefinition in graphql.schema.idl
Methods in graphql.schema.idl with parameters of type InputValueDefinitionModifier and TypeMethodDescriptionvoid
SchemaTypeDirectivesChecker.assertExistAndIsInputType
(InputValueDefinition definition, List<GraphQLError> errors) (package private) GraphQLArgument
SchemaGeneratorHelper.buildArgument
(SchemaGeneratorHelper.BuildContext buildCtx, InputValueDefinition valueDefinition) (package private) static GraphQLArgument
SchemaGeneratorAppliedDirectiveHelper.buildDirectiveArgumentDefinitionFromAst
(SchemaGeneratorHelper.BuildContext buildCtx, InputValueDefinition valueDefinition, Function<Type<?>, GraphQLInputType> inputTypeFactory) private GraphQLInputObjectField
SchemaGeneratorHelper.buildInputField
(SchemaGeneratorHelper.BuildContext buildCtx, InputValueDefinition fieldDef) private void
ArgValueOfAllowedTypeChecker.checkArgInputObjectValueFieldMatchesAllowedDefinition
(List<GraphQLError> errors, ObjectField objectField, InputValueDefinition allowedValueDef) private boolean
SchemaTypeDirectivesChecker.isNoNullArgWithoutDefaultValue
(InputValueDefinition definitionArgument) -
Uses of InputValueDefinition in graphql.schema.idl.errors
Constructors in graphql.schema.idl.errors with parameters of type InputValueDefinitionModifierConstructorDescriptionNonUniqueArgumentError
(TypeDefinition typeDefinition, InputValueDefinition inputValueDefinition, String argumentName) NonUniqueDirectiveError
(TypeDefinition typeDefinition, InputValueDefinition inputValueDefinition, String directiveName) NonUniqueNameError
(DirectiveDefinition typeDefinition, InputValueDefinition inputValueDefinition) NonUniqueNameError
(InputObjectTypeDefinition typeDefinition, InputValueDefinition inputValueDefinition) NonUniqueNameError
(TypeDefinition typeDefinition, InputValueDefinition inputValueDefinition) TypeExtensionFieldRedefinitionError
(TypeDefinition typeDefinition, InputValueDefinition fieldDefinition)