GitHub

Page

Shopify merchants can create pages to hold static HTML content. Each Page object represents a custom page on the online store.

import { Page } from '@daffodil/driver/shopify'
type Page = HasMetafields & Node & OnlineStorePublishable & Trackable & {
    __typename?: 'Page';
    body: Scalars['HTML']['output'];
    bodySummary: Scalars['String']['output'];
    createdAt: Scalars['DateTime']['output'];
    handle: Scalars['String']['output'];
    id: Scalars['ID']['output'];
    metafield?: Maybe<Metafield>;
    metafields: Array<Maybe<Metafield>>;
    onlineStoreUrl?: Maybe<Scalars['URL']['output']>;
    seo?: Maybe<Seo>;
    title: Scalars['String']['output'];
    trackingParameters?: Maybe<Scalars['String']['output']>;
    updatedAt: Scalars['DateTime']['output'];
}
Type Options
Page HasMetafields & Node & OnlineStorePublishable & Trackable & { __typename?: 'Page'; body: Scalars['HTML']['output']; bodySummary: Scalars['String']['output']; createdAt: Scalars['DateTime']['output']; handle: Scalars['String']['output']; id: Scalars['ID']['output']; metafield?: Maybe<Metafield>; metafields: Array<Maybe<Metafield>>; onlineStoreUrl?: Maybe<Scalars['URL']['output']>; seo?: Maybe<Seo>; title: Scalars['String']['output']; trackingParameters?: Maybe<Scalars['String']['output']>; updatedAt: Scalars['DateTime']['output']; }