Package-level declarations
Types
Link copied to clipboard
interface ApolloInterceptor
An ApolloInterceptor intercepts requests at the GraphQL layer.
Link copied to clipboard
interface ApolloInterceptorChain
An ApolloInterceptorChain is a list of interceptors called in order. Each interceptor wraps the subsequent ones and can delegate to them by calling proceed or emit items directly.
Link copied to clipboard
class AutoPersistedQueryInterceptor(httpMethodForHashedQueries: HttpMethod, httpMethodForDocumentQueries: HttpMethod) : ApolloInterceptor
Link copied to clipboard
The retry context of this request.
Link copied to clipboard
Functions
Link copied to clipboard
fun RetryOnErrorInterceptor(networkMonitor: NetworkMonitor? = null, retryStrategy: RetryStrategy = defaultRetryStrategy): ApolloInterceptor
Returns a default ApolloInterceptor that monitors exceptions and possibly retries the Flow according to retryStrategy.