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.

docs(retry): Update retry-operations.md (#2976)

authored by

Dois and committed by
GitHub
34f83b14 1d5baedb

+1 -1
+1 -1
docs/advanced/retry-operations.md
··· 59 59 60 60 Talking about increasing the `delay` randomly, `randomDelay` allows us to disable this. When this option is set to `false` we'll only increase the time between attempts with the `initialDelayMs`. This means if we fail the first time we'll have 1 second wait, next fail we'll have 2 seconds and so on. 61 61 62 - We don't want to infinitely attempt an `operation`, we can declare how many times it should attempt the `operation` with `maxNumberAttempts`. 62 + We can declare how many times it should attempt the `operation` with `maxNumberAttempts`, otherwise, it defaults to 2. If you want it to retry indefinitely, you can simply pass in `Number.POSITIVE_INFINITY`. 63 63 64 64 [For more information on the available options check out the API Docs.](../api/retry-exchange.md) 65 65