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