
* Move plaintext renderer to shared package and use it for Algolia documents * Fix stale variants after product removal, add indices setup * Search: webhooks migration script (#936) * Add webhook recreation script * Add changeset
37 lines
423 B
GraphQL
37 lines
423 B
GraphQL
fragment ProductVariantData on ProductVariant {
|
|
metadata {
|
|
key
|
|
value
|
|
}
|
|
id
|
|
name
|
|
sku
|
|
pricing {
|
|
price {
|
|
gross {
|
|
amount
|
|
currency
|
|
}
|
|
}
|
|
}
|
|
quantityAvailable
|
|
channelListings {
|
|
id
|
|
channel {
|
|
slug
|
|
currencyCode
|
|
}
|
|
price {
|
|
currency
|
|
amount
|
|
}
|
|
}
|
|
|
|
attributes {
|
|
...ProductAttributesData
|
|
}
|
|
|
|
product {
|
|
...ProductData
|
|
}
|
|
}
|