Uses of Class
graphql.schema.CoercingParseLiteralException
-
Packages that use CoercingParseLiteralException Package Description graphql.execution graphql.scalar graphql.schema -
-
Uses of CoercingParseLiteralException in graphql.execution
Methods in graphql.execution that throw CoercingParseLiteralException Modifier and Type Method Description static java.lang.Object
ValuesResolver. valueToInternalValue(InputValueWithState inputValueWithState, GraphQLInputType inputType, GraphQLContext graphqlContext, java.util.Locale locale)
-
Uses of CoercingParseLiteralException in graphql.scalar
Methods in graphql.scalar that throw CoercingParseLiteralException Modifier and Type Method Description @Nullable java.lang.Boolean
GraphqlBooleanCoercing. parseLiteral(@NotNull Value<?> input, @NotNull CoercedVariables variables, @NotNull GraphQLContext graphQLContext, @NotNull java.util.Locale locale)
@Nullable java.lang.Double
GraphqlFloatCoercing. parseLiteral(@NotNull Value<?> input, @NotNull CoercedVariables variables, @NotNull GraphQLContext graphQLContext, @NotNull java.util.Locale locale)
@Nullable java.lang.Object
GraphqlIDCoercing. parseLiteral(@NotNull Value<?> input, @NotNull CoercedVariables variables, @NotNull GraphQLContext graphQLContext, @NotNull java.util.Locale locale)
@Nullable java.lang.Integer
GraphqlIntCoercing. parseLiteral(@NotNull Value<?> input, @NotNull CoercedVariables variables, @NotNull GraphQLContext graphQLContext, @NotNull java.util.Locale locale)
@Nullable java.lang.String
GraphqlStringCoercing. parseLiteral(@NotNull Value<?> input, @NotNull CoercedVariables variables, @NotNull GraphQLContext graphQLContext, @NotNull java.util.Locale locale)
-
Uses of CoercingParseLiteralException in graphql.schema
Methods in graphql.schema that return CoercingParseLiteralException Modifier and Type Method Description CoercingParseLiteralException
CoercingParseLiteralException.Builder. build()
Methods in graphql.schema that throw CoercingParseLiteralException Modifier and Type Method Description default I
Coercing. parseLiteral(@NotNull Value<?> input, @NotNull CoercedVariables variables, @NotNull GraphQLContext graphQLContext, @NotNull java.util.Locale locale)
Called during query execution to convert a query input AST node into a Java object acceptable for the scalar type.default I
Coercing. parseLiteral(@NotNull java.lang.Object input)
Deprecated.default I
Coercing. parseLiteral(java.lang.Object input, java.util.Map<java.lang.String,java.lang.Object> variables)
Deprecated.
-