Skip to content
Last update: March 19, 2024

Page query

This query retrieves information about a specific page based on the provided criteria.

Arguments

Argument Description
storeId String! The ID of the store from which to retrieve the page.
cultureName String The language in which to retrieve the page content.
id String! The unique identifier of the page to retrieve.

Possible returns

Possible return Description
PageType Details of the requested page.

Examples

1
2
3
4
5
6
7
8
9
{
  page(storeId: "B2B-store", cultureName: "en-US", id: "12345") {
    id
    name
    relativeUrl
    permalink
    content
  }
}
{
  "data": {
    "page": {
      "id": "12345",
      "name": "Example Page",
      "relativeUrl": "/example-page",
      "permalink": "/example-page",
      "content": "<p>This is an example page.</p>"
    }
  }
}