GitHub

Collection

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

A collection represents a grouping of products that a shop owner can create to organize them or make their shops easier to browse.

type Collection = HasMetafields & Node & OnlineStorePublishable & Trackable & {
    __typename?: 'Collection';
    description: Scalars['String']['output'];
    descriptionHtml: Scalars['HTML']['output'];
    handle: Scalars['String']['output'];
    id: Scalars['ID']['output'];
    image?: Maybe<Image>;
    metafield?: Maybe<Metafield>;
    metafields: Array<Maybe<Metafield>>;
    onlineStoreUrl?: Maybe<Scalars['URL']['output']>;
    products: ProductConnection;
    seo: Seo;
    title: Scalars['String']['output'];
    trackingParameters?: Maybe<Scalars['String']['output']>;
    updatedAt: Scalars['DateTime']['output'];
}