Back to Content Management API
productPage
Returns a product page by ID in a draft or published state.
Arguments
- Name
id
- Type
- ID!
- Description
The ID of the product page.
- Name
version
- Type
- Version
- Description
The state of the product page you want to retrieve.
- To get the latest content use
CURRENT
. - To get the latest published content use
PUBLISHED
- To get the latest content use
Returns
- Name
ProductPage.*
- Type
- ProductPage
- Description
Any requested field from the Productpage object.
Request
import { PackClient } from '@pack/client'
const packClient = new PackClient({
token: 'YOUR-PACK-TOKEN'
});
const query = `
query ProductPage($id: ID!) {
productPage(id: $id) {
title
handle
seo {
title
description
}
}
}
`;
const variables = {
id: 'product-page-id'
}
const response = await packClient.fetch(query, { variables: variables });
console.log(response.data);
Response
{
"data": {
"productPage": {
"title": "Product Title",
"handle": "product-handle",
"seo": {
"title": "Product Title",
"description": "Product Description",
}
}
}
}