
* Move plaintext renderer to shared package and use it for Algolia documents * Fix stale variants after product removal, add indices setup * Search: webhooks migration script (#936) * Add webhook recreation script * Add changeset
22 lines
292 B
GraphQL
22 lines
292 B
GraphQL
subscription ProductDeleted {
|
|
event {
|
|
__typename
|
|
... on ProductDeleted {
|
|
__typename
|
|
product {
|
|
id
|
|
variants{
|
|
id
|
|
product{
|
|
id
|
|
}
|
|
}
|
|
}
|
|
}
|
|
recipient {
|
|
webhooks {
|
|
id
|
|
}
|
|
}
|
|
}
|
|
}
|