saleor-apps-redis_apl/apps/search/graphql/subscriptions/productVariantOutOfStock.graphql

17 lines
261 B
GraphQL
Raw Normal View History

subscription ProductVariantOutOfStock {
event {
__typename
... on ProductVariantOutOfStock {
__typename
productVariant {
...ProductVariantWebhookPayload
}
}
recipient {
webhooks {
id
}
}
}
}