commerce/framework/vendure/lib/queries/get-all-product-paths-query.ts

10 lines
192 B
TypeScript

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