GitHub

Location

Represents a location where product inventory is held.

import { Location } from '@daffodil/driver/shopify'
type Location = HasMetafields & Node & {
    __typename?: 'Location';
    address: LocationAddress;
    id: Scalars['ID']['output'];
    metafield?: Maybe<Metafield>;
    metafields: Array<Maybe<Metafield>>;
    name: Scalars['String']['output'];
}
Type Options
Location HasMetafields & Node & { __typename?: 'Location'; address: LocationAddress; id: Scalars['ID']['output']; metafield?: Maybe<Metafield>; metafields: Array<Maybe<Metafield>>; name: Scalars['String']['output']; }