commerce/framework/reactioncommerce/utils/queries/get-all-product-vendors-query.ts
Loan Laux 16e475067b
update codegen to include new vendors query and implement vendors query
Signed-off-by: Loan Laux <loan@outgrow.io>
2021-05-14 13:07:29 +04:00

11 lines
209 B
TypeScript

const getAllProductVendors = /* GraphQL */ `
query getAllProductVendors($shopIds: [ID]!) {
vendors(shopIds: $shopIds) {
nodes {
name
}
}
}
`
export default getAllProductVendors