mirror of
https://github.com/vercel/commerce.git
synced 2025-07-22 20:26:49 +00:00
13 lines
175 B
Raku
13 lines
175 B
Raku
export const getPageQuery = /* GraphQL */ `
|
|
query allPosts {
|
|
posts {
|
|
nodes {
|
|
id
|
|
title
|
|
date
|
|
}
|
|
}
|
|
}
|
|
`
|
|
export default getPageQuery
|