GitHub

CustomerUserError

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

import { CustomerUserError } from '@daffodil/driver/shopify'
type CustomerUserError = DisplayableError & {
    __typename?: 'CustomerUserError';
    code?: Maybe<CustomerErrorCode>;
    field?: Maybe<Array<Scalars['String']['output']>>;
    message: Scalars['String']['output'];
}
Type Options
CustomerUserError DisplayableError & { __typename?: 'CustomerUserError'; code?: Maybe<CustomerErrorCode>; field?: MaybeScalars['String']['output']>>; message: Scalars['String']['output']; }