Mirror: The highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow.
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Change exchanges order: "retry" before "fetch" (#714)

authored by

frederikhors and committed by
GitHub
9ef44e87 9be9b306

+1 -1
+1 -1
docs/advanced/retry-operations.md
··· 77 77 exchanges: [ 78 78 dedupExchange, 79 79 cacheExchange, 80 - fetchExchange, 81 80 retryExchange({ 82 81 retryIf: error => { 83 82 if ((error && error.graphQLErrors.length > 0) || error.networkError) { ··· 85 84 } 86 85 }, 87 86 }), 87 + fetchExchange, 88 88 ], 89 89 }); 90 90 ```