pageByHandle
Get a single page by handle/URL
Authentication
Public Access: Accessible with the public API key
Query Structure
{
pageByHandle(handle: String!) {
handle
seoDescription
seoTitle
seoKeywords
url
title
id
isStatic
content
createdAt
updatedAt
}
}Arguments
Return Type
Page - A static or dynamic store page, including content, SEO information, and hierarchy.
Example
query {
pageByHandle(handle: "about-us") {
id
title
handle
url
content
seoTitle
seoDescription
seoKeywords
isStatic
createdAt
updatedAt
}
}