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
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