32 lines
350 B
GraphQL
32 lines
350 B
GraphQL
fragment ProductVariantData on ProductVariant {
|
|
id
|
|
name
|
|
sku
|
|
pricing {
|
|
price {
|
|
gross {
|
|
amount
|
|
currency
|
|
}
|
|
}
|
|
}
|
|
|
|
channelListings {
|
|
id
|
|
channel {
|
|
slug
|
|
}
|
|
price {
|
|
currency
|
|
amount
|
|
}
|
|
}
|
|
|
|
attributes {
|
|
...ProductAttributesData
|
|
}
|
|
|
|
product {
|
|
...ProductData
|
|
}
|
|
}
|