1
0
mirror of https://github.com/vercel/commerce.git synced 2025-06-13 11:21:22 +00:00
commerce/framework/vendure/utils/queries/get-all-product-paths-query.ts
2021-06-02 11:46:38 -03:00

10 lines
192 B
TypeScript

export const getAllProductPathsQuery = /* GraphQL */ `
query getAllProductPaths($first: Int = 100) {
products(options: { take: $first }) {
items {
slug
}
}
}
`