Serialized Form
-
Package com.generated.graphql.util
-
Class com.generated.graphql.util.CustomJacksonDeserializers.List__Directive
class List__Directive extends AbstractCustomJacksonDeserializer<List<__Directive>> implements Serializable- serialVersionUID:
- 1L
-
Class com.generated.graphql.util.CustomJacksonDeserializers.List__DirectiveLocation
class List__DirectiveLocation extends AbstractCustomJacksonDeserializer<List<__DirectiveLocation>> implements Serializable- serialVersionUID:
- 1L
-
Class com.generated.graphql.util.CustomJacksonDeserializers.List__EnumValue
class List__EnumValue extends AbstractCustomJacksonDeserializer<List<__EnumValue>> implements Serializable- serialVersionUID:
- 1L
-
Class com.generated.graphql.util.CustomJacksonDeserializers.List__Field
- serialVersionUID:
- 1L
-
Class com.generated.graphql.util.CustomJacksonDeserializers.List__InputValue
class List__InputValue extends AbstractCustomJacksonDeserializer<List<__InputValue>> implements Serializable- serialVersionUID:
- 1L
-
Class com.generated.graphql.util.CustomJacksonDeserializers.List__Type
- serialVersionUID:
- 1L
-
Class com.generated.graphql.util.CustomJacksonDeserializers.ListCharacter
class ListCharacter extends AbstractCustomJacksonDeserializer<List<Character>> implements Serializable- serialVersionUID:
- 1L
-
Class com.generated.graphql.util.CustomJacksonDeserializers.ListEpisode
- serialVersionUID:
- 1L
-
-
Package com.graphql_java_generator.client.request
-
Class com.graphql_java_generator.client.request.AbstractCustomJacksonSerializer
class AbstractCustomJacksonSerializer extends com.fasterxml.jackson.databind.ser.std.StdSerializer<T> implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
graphQLScalarType
graphql.schema.GraphQLScalarType graphQLScalarType
TheGraphQLScalarType
instance that manages this Custom Scalar. It's used to deserialize the value read on the Jackson response from the server It is mandatory for custom scalars, and must null for other data types. -
listLevel
int listLevel
The depth of the GraphQL list. 0 means it's not a list. 1 is a standard list. 2 is a list of list...
-
-
-
Package com.graphql_java_generator.client.response
-
Class com.graphql_java_generator.client.response.AbstractCustomJacksonDeserializer
class AbstractCustomJacksonDeserializer extends com.fasterxml.jackson.databind.deser.std.StdDeserializer<T> implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
graphQLScalarType
graphql.schema.GraphQLScalarType graphQLScalarType
TheGraphQLScalarType
instance that manages this Custom Scalar. It's used to deserialize the value read on the Jackson response from the server It is mandatory for custom scalars, and must null for other data types. -
handledType
Class<?> handledType
The java type that contains the value of the final items, in the list. For instance for a GraphQL type [[Boolean]], the handle type isBoolean
. It is sent to the jacksonStdDeserializer
. It is also used when the recursion of the nested list is at the deepest level, and the read token is the "real" value. -
itemDeserializer
AbstractCustomJacksonDeserializer<?> itemDeserializer
The class that can deserialize the items in the list. This recursion allows to deserialize list of lists.
This field must be null to deserialize non list objects. And it's mandatory, to deserialize lists. -
list
boolean list
This indicates if this deserializer manages list of GraphQL values, or a GraphQL scalar. We can't just read the kind of JSON token, as it would be possible (very unlikely, but not impossible) that a custom scalar stores its content as a JSON list. So we need our particular way of knowing of this deserialize expects a list or final value (from a GraphQL or java view point).
-
-
Class com.graphql_java_generator.client.response.Error
class Error extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
description
String description
-
errorType
String errorType
-
extensions
com.fasterxml.jackson.databind.JsonNode extensions
The extensions field of errors, stored as is from the incoming GraphQL response. It can be retrieved thanks to one of these methods:Error.getExtensions()
,Error.getExtensionsAsJsonNode()
,Error.getExtensionsAsMapOfJsonNode()
,Error.getExtensionsField(String, Class)
-
extensionsAsMapOfJsonNode
Map<String,
com.fasterxml.jackson.databind.JsonNode> extensionsAsMapOfJsonNode -
extensionsAsMapOfObject
Map<String,
Object> extensionsAsMapOfObject -
localObjectMapper
com.fasterxml.jackson.databind.ObjectMapper localObjectMapper
-
locations
List<Location> locations
-
message
String message
-
path
List<String> path
-
queryPath
List<String> queryPath
-
validationErrorType
String validationErrorType
-
-
-
Package com.graphql_java_generator.exception
-
Exception com.graphql_java_generator.exception.GraphQLRequestExecutionException
class GraphQLRequestExecutionException extends Exception implements Serializable- serialVersionUID:
- 1L
-
Exception com.graphql_java_generator.exception.GraphQLRequestExecutionUncheckedException
class GraphQLRequestExecutionUncheckedException extends RuntimeException implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
graphQLRequestExecutionException
GraphQLRequestExecutionException graphQLRequestExecutionException
-
-
Exception com.graphql_java_generator.exception.GraphQLRequestPreparationException
class GraphQLRequestPreparationException extends Exception implements Serializable- serialVersionUID:
- 1L
-