Files
commerce/framework/woocommerce/utils/queries/get-all-product-vendors-query.ts
2021-09-26 17:09:41 +03: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