saleor-apps-redis_apl/apps/taxes/graphql/fragments/OrderLine.graphql
2023-08-30 13:15:00 +02:00

22 lines
227 B
GraphQL

fragment OrderLine on OrderLine {
id
productSku
productName
quantity
taxClass {
id
}
unitPrice {
net {
amount
}
}
totalPrice {
net {
amount
}
tax {
amount
}
}
}