Package-level declarations

Types

Link copied to clipboard

Dependency boundary check for :serialization-api.

Link copied to clipboard
class GraphQLRequestEncodingException(val operationName: String, val requestType: Type, message: String, cause: Throwable? = null) : GraphQLTransportCodecException

Thrown when GraphQLTransportCodec.encodeRequest fails to serialize a request.

Link copied to clipboard
class GraphQLResponseDecodingException(val responseType: Type, message: String, cause: Throwable? = null) : GraphQLTransportCodecException

Thrown when GraphQLTransportCodec.decodeResponse fails to deserialize a response.

Link copied to clipboard

Backend-neutral contract for serializing GraphQL requests and responses.

Link copied to clipboard
open class GraphQLTransportCodecException(message: String, cause: Throwable? = null) : RuntimeException

Base type for all failures produced by a GraphQLTransportCodec.

Link copied to clipboard