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
}
}
}
`