Uses of Class
graphql.schema.InputValueWithState
-
Packages that use InputValueWithState Package Description graphql.execution graphql.execution.directives graphql.introspection graphql.schema graphql.schema.idl graphql.validation -
-
Uses of InputValueWithState in graphql.execution
Methods in graphql.execution with parameters of type InputValueWithState Modifier and Type Method Description (package private) static java.lang.Object
ValuesResolverConversion. defaultValueToInternalValue(InputInterceptor inputInterceptor, GraphqlFieldVisibility fieldVisibility, InputValueWithState defaultValue, GraphQLInputType type, GraphQLContext graphqlContext, java.util.Locale locale)
static <T> T
ValuesResolver. getInputValueImpl(GraphQLInputType inputType, InputValueWithState inputValue, GraphQLContext graphqlContext, java.util.Locale locale)
static java.lang.Object
ValuesResolver. valueToInternalValue(InputValueWithState inputValueWithState, GraphQLInputType inputType, GraphQLContext graphqlContext, java.util.Locale locale)
(package private) static @Nullable java.lang.Object
ValuesResolverConversion. valueToInternalValueImpl(InputInterceptor inputInterceptor, InputValueWithState inputValueWithState, GraphQLInputType inputType, GraphQLContext graphqlContext, java.util.Locale locale)
static Value<?>
ValuesResolver. valueToLiteral(@NotNull InputValueWithState inputValueWithState, @NotNull GraphQLType type, GraphQLContext graphqlContext, java.util.Locale locale)
static Value<?>
ValuesResolver. valueToLiteral(@NotNull GraphqlFieldVisibility fieldVisibility, @NotNull InputValueWithState inputValueWithState, @NotNull GraphQLType type, GraphQLContext graphqlContext, java.util.Locale locale)
Takes a value which can be in different states (internal, literal, external value) and converts into Literal(package private) static java.lang.Object
ValuesResolverConversion. valueToLiteralImpl(GraphqlFieldVisibility fieldVisibility, InputValueWithState inputValueWithState, GraphQLType type, ValuesResolver.ValueMode valueMode, GraphQLContext graphqlContext, java.util.Locale locale)
-
Uses of InputValueWithState in graphql.execution.directives
Fields in graphql.execution.directives declared as InputValueWithState Modifier and Type Field Description private InputValueWithState
QueryAppliedDirectiveArgument.Builder. value
private InputValueWithState
QueryAppliedDirectiveArgument. value
Methods in graphql.execution.directives that return InputValueWithState Modifier and Type Method Description @NotNull InputValueWithState
QueryAppliedDirectiveArgument. getArgumentValue()
Methods in graphql.execution.directives with parameters of type InputValueWithState Modifier and Type Method Description QueryAppliedDirectiveArgument.Builder
QueryAppliedDirectiveArgument.Builder. inputValueWithState(@NotNull InputValueWithState value)
Constructors in graphql.execution.directives with parameters of type InputValueWithState Constructor Description QueryAppliedDirectiveArgument(java.lang.String name, InputValueWithState value, GraphQLInputType type, Argument definition)
-
Uses of InputValueWithState in graphql.introspection
Methods in graphql.introspection with parameters of type InputValueWithState Modifier and Type Method Description private static java.lang.String
Introspection. printDefaultValue(InputValueWithState inputValueWithState, GraphQLInputType type, GraphQLContext graphQLContext, java.util.Locale locale)
-
Uses of InputValueWithState in graphql.schema
Fields in graphql.schema declared as InputValueWithState Modifier and Type Field Description private InputValueWithState
GraphQLArgument.Builder. defaultValue
private InputValueWithState
GraphQLArgument. defaultValue
private InputValueWithState
GraphQLInputObjectField.Builder. defaultValue
private InputValueWithState
GraphQLInputObjectField. defaultValue
static InputValueWithState
InputValueWithState. NOT_SET
private InputValueWithState
GraphQLAppliedDirectiveArgument.Builder. value
private InputValueWithState
GraphQLAppliedDirectiveArgument. value
private InputValueWithState
GraphQLArgument.Builder. value
private InputValueWithState
GraphQLArgument. value
Methods in graphql.schema that return InputValueWithState Modifier and Type Method Description @NotNull InputValueWithState
GraphQLArgument. getArgumentDefaultValue()
The default value of this argument.@NotNull InputValueWithState
GraphQLAppliedDirectiveArgument. getArgumentValue()
@NotNull InputValueWithState
GraphQLArgument. getArgumentValue()
Deprecated.useGraphQLAppliedDirectiveArgument
instead@NotNull InputValueWithState
GraphQLInputObjectField. getInputFieldDefaultValue()
The default value of this input field.static InputValueWithState
InputValueWithState. newExternalValue(@Nullable java.lang.Object value)
static InputValueWithState
InputValueWithState. newInternalValue(@Nullable java.lang.Object value)
static InputValueWithState
InputValueWithState. newLiteralValue(@NotNull Value value)
Methods in graphql.schema with parameters of type InputValueWithState Modifier and Type Method Description GraphQLAppliedDirectiveArgument.Builder
GraphQLAppliedDirectiveArgument.Builder. inputValueWithState(@NotNull InputValueWithState value)
Constructors in graphql.schema with parameters of type InputValueWithState Constructor Description GraphQLAppliedDirectiveArgument(java.lang.String name, InputValueWithState value, GraphQLInputType type, Argument definition)
GraphQLArgument(java.lang.String name, java.lang.String description, GraphQLInputType type, InputValueWithState defaultValue, InputValueWithState value, InputValueDefinition definition, java.util.List<GraphQLDirective> directives, java.util.List<GraphQLAppliedDirective> appliedDirectives, java.lang.String deprecationReason)
GraphQLInputObjectField(java.lang.String name, java.lang.String description, GraphQLInputType type, InputValueWithState defaultValue, java.util.List<GraphQLDirective> directives, java.util.List<GraphQLAppliedDirective> appliedDirectives, InputValueDefinition definition, java.lang.String deprecationReason)
-
Uses of InputValueWithState in graphql.schema.idl
Methods in graphql.schema.idl with parameters of type InputValueWithState Modifier and Type Method Description private static java.lang.String
SchemaPrinter. printAst(InputValueWithState value, GraphQLInputType type)
-
Uses of InputValueWithState in graphql.validation
Fields in graphql.validation with type parameters of type InputValueWithState Modifier and Type Field Description private java.util.List<InputValueWithState>
TraversalContext. defaultValueStack
Methods in graphql.validation that return InputValueWithState Modifier and Type Method Description InputValueWithState
TraversalContext. getDefaultValue()
InputValueWithState
ValidationContext. getDefaultValue()
Methods in graphql.validation with parameters of type InputValueWithState Modifier and Type Method Description private void
TraversalContext. addDefaultValue(InputValueWithState defaultValue)
-