UNPKG

@aws-amplify/graphql-api-construct

Version:

AppSync GraphQL Api Construct using Amplify GraphQL Transformer.

8 lines (7 loc) 348 B
import { isClockSkewError, isRetryableByTrait, isThrottlingError, isTransientError, } from "@smithy/service-error-classification"; export const defaultRetryDecider = (error) => { if (!error) { return false; } return isRetryableByTrait(error) || isClockSkewError(error) || isThrottlingError(error) || isTransientError(error); };