saleor-apps-redis_apl/apps/taxes/graphql/subscriptions/OrderConfirmed.graphql
Adrian Pilarczyk 6106e1d5fa
feat: Avatax metadata tax calculation date (#843)
* feat:  add metadata tax calculation date

* build: 👷 add changeset
2023-08-03 11:48:43 +02:00

88 lines
1.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")
avataxTaxCalculationDate: metafield(key: "avataxTaxCalculationDate")
}
fragment OrderConfirmedEventSubscription on Event {
__typename
... on OrderConfirmed {
order {
...OrderConfirmedSubscription
}
}
recipient {
privateMetadata {
key
value
}
}
}
subscription OrderConfirmedSubscription {
event {
...OrderConfirmedEventSubscription
}
}