GitHub

CheckoutUserError

import { CheckoutUserError } from '@daffodil/driver/shopify'

Represents an error that happens during execution of a checkout mutation.

type CheckoutUserError = DisplayableError & {
    __typename?: 'CheckoutUserError';
    code?: Maybe<CheckoutErrorCode>;
    field?: Maybe<Array<Scalars['String']['output']>>;
    message: Scalars['String']['output'];
}