GitHub

CartBuyerIdentity

Represents information about the buyer that is interacting with the cart.

import { CartBuyerIdentity } from '@daffodil/driver/shopify'
type CartBuyerIdentity = {
    __typename?: 'CartBuyerIdentity';
    countryCode?: Maybe<CountryCode>;
    customer?: Maybe<Customer>;
    deliveryAddressPreferences: Array<DeliveryAddress>;
    email?: Maybe<Scalars['String']['output']>;
    phone?: Maybe<Scalars['String']['output']>;
    preferences?: Maybe<CartPreferences>;
    purchasingCompany?: Maybe<PurchasingCompany>;
    walletPreferences: Array<Scalars['String']['output']>;
}
Type Options
CartBuyerIdentity { __typename?: 'CartBuyerIdentity'; countryCode?: Maybe<CountryCode>; customer?: Maybe<Customer>; deliveryAddressPreferences: Array<DeliveryAddress>; email?: Maybe<Scalars['String']['output']>; phone?: Maybe<Scalars['String']['output']>; preferences?: Maybe<CartPreferences>; purchasingCompany?: Maybe<PurchasingCompany>; walletPreferences: Array<Scalars['String']['output']>; }