saleor-apps-redis_apl/apps/taxes/graphql/subscriptions/OrderConfirmed.graphql
2023-08-03 09:25:15 +02:00

87 lines
1 KiB
GraphQL

fragment OrderLine on OrderLine {
productSku
productName
quantity
taxClass {
id
}
unitPrice {
net {
amount
}
}
totalPrice {
net {
amount
}
tax {
amount
}
}
}
fragment OrderConfirmedSubscription on Order {
id
user {
id
email
}
created
status
channel {
id
slug
}
shippingAddress {
...Address
}
billingAddress {
...Address
}
total {
currency
net {
amount
}
tax {
amount
}
}
shippingPrice {
gross {
amount
}
net {
amount
}
}
lines {
...OrderLine
}
discounts {
id
amount {
amount
}
}
avataxEntityCode: metafield(key: "avataxEntityCode")
}
fragment OrderConfirmedEventSubscription on Event {
__typename
... on OrderConfirmed {
order {
...OrderConfirmedSubscription
}
}
recipient {
privateMetadata {
key
value
}
}
}
subscription OrderConfirmedSubscription {
event {
...OrderConfirmedEventSubscription
}
}