1
0
mirror of https://github.com/vercel/commerce.git synced 2025-05-09 03:07:50 +00:00
2021-06-02 11:46:38 -03:00

42 lines
624 B
TypeScript

export const getProductQuery = /* GraphQL */ `
query getProduct($slug: String!) {
product(slug: $slug) {
id
name
slug
description
assets {
id
preview
name
}
variants {
id
priceWithTax
currencyCode
options {
id
name
code
groupId
group {
id
options {
name
}
}
}
}
optionGroups {
id
code
name
options {
id
name
}
}
}
}
`