apollo-link-retry
Version:
Retry Apollo Link for GraphQL Network Stack
12 lines • 493 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
function buildRetryFunction(retryOptions) {
var _a = retryOptions || {}, retryIf = _a.retryIf, _b = _a.max, max = _b === void 0 ? 5 : _b;
return function retryFunction(count, operation, error) {
if (count >= max)
return false;
return retryIf ? retryIf(error, operation) : !!error;
};
}
exports.buildRetryFunction = buildRetryFunction;
//# sourceMappingURL=retryFunction.js.map