GitHub

Attribute

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

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

type Attribute = {
    __typename?: 'Attribute';
    key: Scalars['String']['output'];
    value?: Maybe<Scalars['String']['output']>;
}