Uses of Class
graphql.schema.CoercingParseValueException
-
Packages that use CoercingParseValueException Package Description graphql.execution graphql.scalar graphql.schema -
-
Uses of CoercingParseValueException in graphql.execution
Methods in graphql.execution that throw CoercingParseValueException Modifier and Type Method Description static CoercedVariables
ValuesResolver. coerceVariableValues(GraphQLSchema schema, java.util.List<VariableDefinition> variableDefinitions, RawVariables rawVariables, GraphQLContext graphqlContext, java.util.Locale locale)
This method coerces the "raw" variables values provided to the engine.private static java.lang.Object
ValuesResolverConversion. externalValueToInternalValueForEnum(GraphQLEnumType graphQLEnumType, java.lang.Object value, GraphQLContext graphqlContext, java.util.Locale locale)
including validationprivate static java.util.List
ValuesResolverConversion. externalValueToInternalValueForList(InputInterceptor inputInterceptor, GraphqlFieldVisibility fieldVisibility, GraphQLList graphQLList, java.lang.Object value, GraphQLContext graphqlContext, java.util.Locale locale)
including validationprivate static java.lang.Object
ValuesResolverConversion. externalValueToInternalValueForObject(InputInterceptor inputInterceptor, GraphqlFieldVisibility fieldVisibility, GraphQLInputObjectType inputObjectType, java.util.Map<java.lang.String,java.lang.Object> inputMap, GraphQLContext graphqlContext, java.util.Locale locale)
performs validationprivate static java.lang.Object
ValuesResolverConversion. externalValueToInternalValueForScalar(GraphQLScalarType graphQLScalarType, java.lang.Object value, GraphQLContext graphqlContext, java.util.Locale locale)
including validation(package private) static java.lang.Object
ValuesResolverConversion. externalValueToInternalValueImpl(InputInterceptor inputInterceptor, GraphqlFieldVisibility fieldVisibility, GraphQLInputType graphQLType, java.lang.Object originalValue, GraphQLContext graphqlContext, java.util.Locale locale)
Performs validation toostatic java.lang.Object
ValuesResolver. valueToInternalValue(InputValueWithState inputValueWithState, GraphQLInputType inputType, GraphQLContext graphqlContext, java.util.Locale locale)
-
Uses of CoercingParseValueException in graphql.scalar
Methods in graphql.scalar that throw CoercingParseValueException Modifier and Type Method Description java.lang.Boolean
GraphqlBooleanCoercing. parseValue(@NotNull java.lang.Object input, @NotNull GraphQLContext graphQLContext, @NotNull java.util.Locale locale)
java.lang.Double
GraphqlFloatCoercing. parseValue(@NotNull java.lang.Object input, @NotNull GraphQLContext graphQLContext, @NotNull java.util.Locale locale)
java.lang.Object
GraphqlIDCoercing. parseValue(@NotNull java.lang.Object input, @NotNull GraphQLContext graphQLContext, @NotNull java.util.Locale locale)
java.lang.Integer
GraphqlIntCoercing. parseValue(@NotNull java.lang.Object input, @NotNull GraphQLContext graphQLContext, @NotNull java.util.Locale locale)
java.lang.String
GraphqlStringCoercing. parseValue(@NotNull java.lang.Object input, @NotNull GraphQLContext graphQLContext, @NotNull java.util.Locale locale)
-
Uses of CoercingParseValueException in graphql.schema
Methods in graphql.schema that return CoercingParseValueException Modifier and Type Method Description CoercingParseValueException
CoercingParseValueException.Builder. build()
Methods in graphql.schema that throw CoercingParseValueException Modifier and Type Method Description default I
Coercing. parseValue(@NotNull java.lang.Object input)
Deprecated.default I
Coercing. parseValue(@NotNull java.lang.Object input, @NotNull GraphQLContext graphQLContext, @NotNull java.util.Locale locale)
Called to resolve an input from a query variable into a Java object acceptable for the scalar type.
-