mirror of
https://github.com/vercel/commerce.git
synced 2025-05-19 16:07:01 +00:00
11 lines
209 B
TypeScript
11 lines
209 B
TypeScript
const getAllProductVendors = /* GraphQL */ `
|
|
query getAllProductVendors($shopIds: [ID]!) {
|
|
vendors(shopIds: $shopIds) {
|
|
nodes {
|
|
name
|
|
}
|
|
}
|
|
}
|
|
`
|
|
export default getAllProductVendors
|