GitHub

Attribute

Represents a generic custom attribute, such as whether an order is a customer's first.

import { Attribute } from '@daffodil/driver/shopify'
type Attribute = {
    __typename?: 'Attribute';
    key: Scalars['String']['output'];
    value?: Maybe<Scalars['String']['output']>;
}
Type Options
Attribute { __typename?: 'Attribute'; key: Scalars['String']['output']; value?: Maybe<Scalars['String']['output']>; }