GitHub

CustomerUserError

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

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

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