Uses of Class
graphql.schema.CoercingSerializeException
-
Packages that use CoercingSerializeException Package Description graphql graphql.execution graphql.scalar graphql.schema -
-
Uses of CoercingSerializeException in graphql
Fields in graphql declared as CoercingSerializeException Modifier and Type Field Description private CoercingSerializeException
SerializationError. exception
Methods in graphql that return CoercingSerializeException Modifier and Type Method Description CoercingSerializeException
SerializationError. getException()
Methods in graphql with parameters of type CoercingSerializeException Modifier and Type Method Description private java.lang.String
SerializationError. mkMessage(ResultPath path, CoercingSerializeException exception)
Constructors in graphql with parameters of type CoercingSerializeException Constructor Description SerializationError(ResultPath path, CoercingSerializeException exception)
-
Uses of CoercingSerializeException in graphql.execution
Methods in graphql.execution with parameters of type CoercingSerializeException Modifier and Type Method Description private java.lang.Object
ExecutionStrategy. handleCoercionProblem(ExecutionContext context, ExecutionStrategyParameters parameters, CoercingSerializeException e)
-
Uses of CoercingSerializeException in graphql.scalar
Methods in graphql.scalar that throw CoercingSerializeException Modifier and Type Method Description @Nullable java.lang.Boolean
GraphqlBooleanCoercing. serialize(@NotNull java.lang.Object dataFetcherResult, @NotNull GraphQLContext graphQLContext, @NotNull java.util.Locale locale)
@Nullable java.lang.Double
GraphqlFloatCoercing. serialize(@NotNull java.lang.Object dataFetcherResult, @NotNull GraphQLContext graphQLContext, @NotNull java.util.Locale locale)
@Nullable java.lang.Object
GraphqlIDCoercing. serialize(@NotNull java.lang.Object dataFetcherResult, @NotNull GraphQLContext graphQLContext, @NotNull java.util.Locale locale)
@Nullable java.lang.Integer
GraphqlIntCoercing. serialize(@NotNull java.lang.Object dataFetcherResult, @NotNull GraphQLContext graphQLContext, @NotNull java.util.Locale locale)
@Nullable java.lang.String
GraphqlStringCoercing. serialize(@NotNull java.lang.Object dataFetcherResult, @NotNull GraphQLContext graphQLContext, @NotNull java.util.Locale locale)
-
Uses of CoercingSerializeException in graphql.schema
Methods in graphql.schema that return CoercingSerializeException Modifier and Type Method Description CoercingSerializeException
CoercingSerializeException.Builder. build()
Methods in graphql.schema that throw CoercingSerializeException Modifier and Type Method Description default O
Coercing. serialize(@NotNull java.lang.Object dataFetcherResult)
Deprecated.default O
Coercing. serialize(@NotNull java.lang.Object dataFetcherResult, @NotNull GraphQLContext graphQLContext, @NotNull java.util.Locale locale)
Called to convert a Java object result of a DataFetcher to a valid runtime value for the scalar type.
-