33 lines
350 B
GraphQL
33 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
|
||
|
}
|
||
|
}
|