CLASS
LegacyParsingInterceptor
public class LegacyParsingInterceptor: ApolloInterceptor
An interceptor which parses code using the legacy parsing system.
Properties
cacheKeyForObject
public var cacheKeyForObject: CacheKeyForObject?
Methods
init(cacheKeyForObject:)
public init(cacheKeyForObject: CacheKeyForObject? = nil)
Designated Initializer
interceptAsync(chain:request:response:completion:)
public func interceptAsync<Operation: GraphQLOperation>(
chain: RequestChain,
request: HTTPRequest<Operation>,
response: HTTPResponse<Operation>?,
completion: @escaping (Result<GraphQLResult<Operation.Data>, Error>) -> Void)
Parameters
Name | Description |
---|---|
chain | The chain the interceptor is a part of. |
request | The request, as far as it has been constructed |
response | [optional] The response, if received |
completion | The completion block to fire when data needs to be returned to the UI. |