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

19 lines
249 B
GraphQL
Raw Normal View History

subscription ProductVariantDeleted {
event {
__typename
... on ProductVariantDeleted {
productVariant {
id
product{
id
}
}
}
recipient {
webhooks {
id
}
}
}
}