11 lines
197 B
GraphQL
11 lines
197 B
GraphQL
subscription ProductVariantUpdated {
|
|
event {
|
|
__typename
|
|
... on ProductVariantUpdated {
|
|
__typename
|
|
productVariant {
|
|
...ProductVariantWebhookPayload
|
|
}
|
|
}
|
|
}
|
|
}
|