commerce/framework/vendure/utils/queries/get-all-product-paths-query.ts
2021-06-02 13:45:07 +02:00

10 lines
192 B
TypeScript

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