commerce/packages/reactioncommerce/utils/queries/get-all-product-vendors-query.ts
2022-03-09 21:41:08 +04:00

11 lines
209 B
TypeScript

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