
* Add media and stock flag * Add UI for updating the queries * Add update info to changelog
16 lines
263 B
GraphQL
16 lines
263 B
GraphQL
subscription ProductVariantBackInStock {
|
|
event {
|
|
__typename
|
|
... on ProductVariantBackInStock {
|
|
__typename
|
|
productVariant {
|
|
...ProductVariantWebhookPayload
|
|
}
|
|
}
|
|
recipient {
|
|
webhooks {
|
|
id
|
|
}
|
|
}
|
|
}
|
|
}
|