mirror of
https://github.com/vercel/commerce.git
synced 2025-06-20 22:11:22 +00:00
11 lines
156 B
TypeScript
11 lines
156 B
TypeScript
export const getPageQuery = /* GraphQL */ `
|
|
query($id: ID!) {
|
|
page(id: $id) {
|
|
id
|
|
title
|
|
slug
|
|
}
|
|
}
|
|
`
|
|
export default getPageQuery
|