
* Add media and stock flag * Add UI for updating the queries * Add update info to changelog
36 lines
404 B
GraphQL
36 lines
404 B
GraphQL
fragment ProductVariantData on ProductVariant {
|
|
metadata {
|
|
key
|
|
value
|
|
}
|
|
id
|
|
name
|
|
sku
|
|
pricing {
|
|
price {
|
|
gross {
|
|
amount
|
|
currency
|
|
}
|
|
}
|
|
}
|
|
quantityAvailable
|
|
channelListings {
|
|
id
|
|
channel {
|
|
slug
|
|
}
|
|
price {
|
|
currency
|
|
amount
|
|
}
|
|
}
|
|
|
|
attributes {
|
|
...ProductAttributesData
|
|
}
|
|
|
|
product {
|
|
...ProductData
|
|
}
|
|
}
|