mirror of
https://github.com/vercel/commerce.git
synced 2025-04-25 04:17:51 +00:00
10 lines
192 B
TypeScript
10 lines
192 B
TypeScript
export const getAllProductPathsQuery = /* GraphQL */ `
|
|
query getAllProductPaths($first: Int = 100) {
|
|
products(options: { take: $first }) {
|
|
items {
|
|
slug
|
|
}
|
|
}
|
|
}
|
|
`
|