CmsPage
Contains details about a CMS page.
type CmsPage = RoutableInterface & {
__typename?: 'CmsPage'; /** The content of the CMS page in raw HTML. */
content?: Maybe<Scalars['String']['output']>; /** The heading that displays at the top of the CMS page. */
content_heading?: Maybe<Scalars['String']['output']>; /** The ID of a CMS page. */
identifier?: Maybe<Scalars['String']['output']>; /** A brief description of the page for search results listings. */
meta_description?: Maybe<Scalars['String']['output']>; /** A brief description of the page for search results listings. */
meta_keywords?: Maybe<Scalars['String']['output']>; /** A page title that is indexed by search engines and appears in search results listings. */
meta_title?: Maybe<Scalars['String']['output']>; /** The design layout of the page, indicating the number of columns and navigation features used on the page. */
page_layout?: Maybe<Scalars['String']['output']>; /** Contains 0 when there is no redirect error. A value of 301 indicates the URL of the requested resource has been changed permanently, while a value of 302 indicates a temporary redirect. */
redirect_code: Scalars['Int']['output']; /** The internal relative URL. If the specified URL is a redirect, the query returns the redirected URL, not the original. */
relative_url?: Maybe<Scalars['String']['output']>; /** The name that appears in the breadcrumb trail navigation and in the browser title bar and tab. */
title?: Maybe<Scalars['String']['output']>; /** One of PRODUCT, CATEGORY, or CMS_PAGE. */
type?: Maybe<UrlRewriteEntityTypeEnum>; /** The URL key of the CMS page, which is often based on the `content_heading`. */
url_key?: Maybe<Scalars['String']['output']>;
};