You are viewing documentation for a previous version of this software.

Switch to the latest stable version.

GraphQLResponse


CLASS

GraphQLResponse

Swift
1public final class GraphQLResponse<Data: GraphQLSelectionSet>

Represents a GraphQL response received from a server.

Properties

body

Swift
1public let body: JSONObject

Methods

init(operation:body:)

Swift
1public init<Operation: GraphQLOperation>(operation: Operation, body: JSONObject) where Operation.Data == Data

parseResult(cacheKeyForObject:)

Swift
1public func parseResult(cacheKeyForObject: CacheKeyForObject? = nil) throws -> (GraphQLResult<Data>, RecordSet?)

Parses a response into a GraphQLResult and a RecordSet. The result can be sent to a completion block for a request. The RecordSet can be merged into a local cache.

  • Parameter cacheKeyForObject: See CacheKeyForObject

  • Returns: A GraphQLResult and a RecordSet.

Parameters

NameDescription
cacheKeyForObjectSee CacheKeyForObject

parseErrorsOnlyFast()

Swift
1public func parseErrorsOnlyFast() -> [GraphQLError]?

parseResultFast()

Swift
1public func parseResultFast() throws -> GraphQLResult<Data>
Feedback

Edit on GitHub

Forums