page
Get a single page by ID
Authentication
Public Access: Accessible with the public API key
Query Structure
{
page(id: ID!) {
handle
seoDescription
seoTitle
seoKeywords
url
title
id
isStatic
content
createdAt
updatedAt
}
}Arguments
| Argument | Type | Required | Description |
|---|---|---|---|
| id | ID! | Yes | The ID of the page to retrieve |
Return Type
Page - Describes a page with metadata, content, and SEO information.
Example
{
page(id: 12345) {
id
title
handle
content
url
seoTitle
seoDescription
seoKeywords
isStatic
createdAt
updatedAt
}
}