ProductUpdated
Event sent when product is updated.
Added in Saleor 3.2type ProductUpdated implements Event {
  issuedAt: DateTime
  version: String
  issuingPrincipal: IssuingPrincipal
  recipient: App
  product(channel: String): Product
  category: Category
}
Fields
ProductUpdated.issuedAt ● DateTime scalar miscellaneous
Time of the event.
ProductUpdated.version ● String scalar miscellaneous
Saleor version that triggered the event.
ProductUpdated.issuingPrincipal ● IssuingPrincipal union miscellaneous
The user or application that triggered the event.
ProductUpdated.recipient ● App object apps
The application receiving the webhook.
ProductUpdated.product ● Product object products
The product the event relates to.
ProductUpdated.product.channel●Stringscalar miscellaneousSlug of a channel for which the data should be returned.
ProductUpdated.category ● Category object products
The category of the product.