saleor-apps-redis_apl/apps/taxes/graphql/fragments/OrderLine.graphql

23 lines
227 B
GraphQL
Raw Normal View History

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