commerce/framework/swell/utils/queries/get-all-product-vendors-query.ts
2021-03-02 21:05:13 -06:00

18 lines
354 B
TypeScript

const getAllProductVendors = /* GraphQL */ `
query getAllProductVendors($first: Int = 250, $cursor: String) {
products(first: $first, after: $cursor) {
pageInfo {
hasNextPage
hasPreviousPage
}
edges {
node {
vendor
}
cursor
}
}
}
`
export default getAllProductVendors