commerce/packages/saleor/utils/queries/get-all-product-vendors-query.ts
2022-01-14 18:29:24 -05:00

17 lines
325 B
TypeScript

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