Mirror: The highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow.
1# @urql/exchange-retry (Exchange factory)
2
3`@urql/exchange-retry` is an exchange for the [`urql`](../../README.md) GraphQL client that allows operations (queries, mutations, subscriptions) to be retried based on an `options` parameter.
4
5## Quick Start Guide
6
7First install `@urql/exchange-retry` alongside `urql`:
8
9```sh
10yarn add @urql/exchange-retry
11# or
12npm install --save @urql/exchange-retry
13```
14
15Read more about the [retry exchange](https://formidable.com/open-source/urql/docs/advanced/retry-operations).