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

23 lines
292 B
GraphQL
Raw Normal View History

subscription ProductDeleted {
event {
__typename
... on ProductDeleted {
__typename
product {
id
variants{
id
product{
id
}
}
}
}
recipient {
webhooks {
id
}
}
}
}