12 lines
197 B
GraphQL
12 lines
197 B
GraphQL
![]() |
subscription ProductVariantDeleted {
|
||
|
event {
|
||
|
__typename
|
||
|
... on ProductVariantDeleted {
|
||
|
__typename
|
||
|
productVariant {
|
||
|
...ProductVariantWebhookPayload
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|