saleor-apps-redis_apl/apps/search/graphql/subscriptions/productEdited.graphql
Lukasz Ostrowski 21f0a60f07
Add search app (#108)
* Add Search App to apps

* Link eslint config to invoices

* Changesets
2023-02-08 09:28:14 +01:00

41 lines
771 B
GraphQL

subscription ProductEdited {
event {
__typename
... on ProductUpdated {
__typename
product {
...ProductWebhookPayload
}
}
... on ProductCreated {
__typename
product {
...ProductWebhookPayload
}
}
... on ProductDeleted {
__typename
product {
...ProductWebhookPayload
}
}
... on ProductVariantCreated {
__typename
productVariant {
...ProductVariantWebhookPayload
}
}
... on ProductVariantUpdated {
__typename
productVariant {
...ProductVariantWebhookPayload
}
}
... on ProductVariantDeleted {
__typename
productVariant {
...ProductVariantWebhookPayload
}
}
}
}