Uses of Interface
graphql.schema.GraphQLInputType
Packages that use GraphQLInputType
Package
Description
-
Uses of GraphQLInputType in graphql.analysis
Methods in graphql.analysis that return GraphQLInputTypeModifier and TypeMethodDescriptionQueryVisitorFieldArgumentInputValue.getInputType()QueryVisitorFieldArgumentInputValueImpl.getInputType() -
Uses of GraphQLInputType in graphql.execution
Methods in graphql.execution with parameters of type GraphQLInputTypeModifier and TypeMethodDescriptionstatic ObjectValuesResolver.externalValueToInternalValue(GraphqlFieldVisibility fieldVisibility, Object externalValue, GraphQLInputType type, GraphQLContext graphqlContext, Locale locale) Converts an external value to an internal valuestatic <T> TValuesResolver.getInputValueImpl(GraphQLInputType inputType, InputValueWithState inputValue, GraphQLContext graphqlContext, Locale locale) static ObjectValuesResolver.valueToInternalValue(InputValueWithState inputValueWithState, GraphQLInputType inputType, GraphQLContext graphqlContext, Locale locale) -
Uses of GraphQLInputType in graphql.execution.directives
Methods in graphql.execution.directives that return GraphQLInputTypeModifier and TypeMethodDescription@NotNull GraphQLInputTypeQueryAppliedDirectiveArgument.getType()Methods in graphql.execution.directives with parameters of type GraphQLInputTypeModifier and TypeMethodDescriptionQueryAppliedDirectiveArgument.Builder.type(GraphQLInputType type) -
Uses of GraphQLInputType in graphql.execution.values
Methods in graphql.execution.values with parameters of type GraphQLInputTypeModifier and TypeMethodDescriptionInputInterceptor.intercept(@Nullable Object value, @NotNull GraphQLInputType graphQLType, @NotNull GraphQLContext graphqlContext, @NotNull Locale locale) This is called with a value that is to be presented to theValuesResolvercode. -
Uses of GraphQLInputType in graphql.execution.values.legacycoercing
Methods in graphql.execution.values.legacycoercing with parameters of type GraphQLInputTypeModifier and TypeMethodDescriptionLegacyCoercingInputInterceptor.intercept(@Nullable Object input, @NotNull GraphQLInputType graphQLType, @NotNull GraphQLContext graphqlContext, @NotNull Locale locale) Method parameters in graphql.execution.values.legacycoercing with type arguments of type GraphQLInputTypeModifier and TypeMethodDescriptionLegacyCoercingInputInterceptor.migratesValues(BiConsumer<Object, GraphQLInputType> observerCallback) This will change legacy values as it encounters them to something acceptable to the more strict coercion rules.LegacyCoercingInputInterceptor.observesValues(BiConsumer<Object, GraphQLInputType> observerCallback) This will ONLY observe legacy values and invoke the callback when it gets one. -
Uses of GraphQLInputType in graphql.schema
Subinterfaces of GraphQLInputType in graphql.schemaModifier and TypeInterfaceDescriptioninterfaceInput types represent those set of types that are allowed to be accepted as graphql mutation input, as opposed toGraphQLOutputTypes which can only be used as graphql response output.Classes in graphql.schema that implement GraphQLInputTypeModifier and TypeClassDescriptionclassA graphql enumeration type has a limited set of values.classgraphql clearly delineates between the types of objects that represent the output of a query and input objects that can be fed into a graphql mutation.classA modified type that indicates there is a list of the underlying wrapped type, eg a list of strings or a list of booleans.classA modified type that indicates there the underlying wrapped type will not be null.classA scalar type is a leaf node in the graphql tree of types.classA special type to allow a object/interface types to reference itself.Methods in graphql.schema with type parameters of type GraphQLInputTypeModifier and TypeMethodDescription<T extends GraphQLInputType>
TGraphQLInputValueDefinition.getType()Methods in graphql.schema that return GraphQLInputTypeModifier and TypeMethodDescriptionGraphQLAppliedDirectiveArgument.getType()GraphQLArgument.getType()GraphQLInputObjectField.getType()Methods in graphql.schema with parameters of type GraphQLInputTypeModifier and TypeMethodDescriptionGraphQLAppliedDirectiveArgument.Builder.type(GraphQLInputType type) GraphQLArgument.Builder.type(GraphQLInputType type) GraphQLInputObjectField.Builder.type(GraphQLInputType type) default TraversalControlGraphQLTypeVisitor.visitGraphQLInputType(GraphQLInputType node, TraverserContext<GraphQLSchemaElement> context) -
Uses of GraphQLInputType in graphql.schema.idl
Methods in graphql.schema.idl that return types with arguments of type GraphQLInputTypeModifier and TypeMethodDescriptionFunction<Type<?>, GraphQLInputType> SchemaGeneratorHelper.inputTypeFactory(graphql.schema.idl.SchemaGeneratorHelper.BuildContext buildCtx) -
Uses of GraphQLInputType in graphql.schema.impl
Methods in graphql.schema.impl with parameters of type GraphQLInputTypeModifier and TypeMethodDescriptionMultiReadOnlyGraphQLTypeVisitor.visitGraphQLInputType(GraphQLInputType node, TraverserContext<GraphQLSchemaElement> context) -
Uses of GraphQLInputType in graphql.validation
Methods in graphql.validation that return GraphQLInputTypeModifier and TypeMethodDescriptionTraversalContext.getInputType()ValidationContext.getInputType()