GitHub

PurchasingCompany

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

import { PurchasingCompany } from '@daffodil/driver/shopify'
type PurchasingCompany = {
    __typename?: 'PurchasingCompany';
    company: Company;
    contact?: Maybe<CompanyContact>;
    location: CompanyLocation;
}
Type Options
PurchasingCompany { __typename?: 'PurchasingCompany'; company: Company; contact?: Maybe<CompanyContact>; location: CompanyLocation; }