Skip to Content

Page

A static or dynamic store page, including content, SEO information, and hierarchy.

Type Definition

type Page { handle: String seoDescription: String seoTitle: String seoKeywords: String url: String title: String id: Int isStatic: Boolean content: String createdAt: String updatedAt: String }

Fields

FieldTypeDescription
handleStringReturns the handle.
seoDescriptionStringReturns description for search engines.
seoTitleStringReturns title for search engines.
seoKeywordsStringReturns keywords for search engines.
urlStringReturns the URL for this product group.
titleStringReturns the title.
idIntReturns the id.
isStaticBooleanReturns true if this page was not built with the theme editor and has static content.
contentStringReturns the static page content.
createdAtStringReturns the date when this page was created.
updatedAtStringReturns the date when this page was last updated at.

Relationships

The Page type represents static or dynamic store pages and is returned by page-related queries. It can be accessed through the page and pageByHandle queries, and is referenced within the Link type as a nested page object and as the node within PageEdge results.

Example

query { page(id: 12345) { id handle title url seoTitle seoDescription seoKeywords isStatic content createdAt updatedAt } }

Implements

None