2023-07-27 15:16:13 +00:00
|
|
|
fragment OrderCancelledSubscription on Order {
|
|
|
|
id
|
2023-08-01 06:34:55 +00:00
|
|
|
avataxId: metafield(key: "avataxId")
|
2023-07-27 15:16:13 +00:00
|
|
|
channel {
|
|
|
|
id
|
|
|
|
slug
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fragment OrderCancelledEventSubscription on Event {
|
|
|
|
__typename
|
|
|
|
... on OrderCancelled {
|
|
|
|
order {
|
|
|
|
...OrderCancelledSubscription
|
|
|
|
}
|
|
|
|
recipient {
|
|
|
|
privateMetadata {
|
|
|
|
key
|
|
|
|
value
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
subscription OrderCancelledSubscription {
|
|
|
|
event {
|
|
|
|
...OrderCancelledEventSubscription
|
|
|
|
}
|
|
|
|
}
|