
* fix: 🐛 calculate taxes customerCode * build: 👷 changeset * refactor: ♻️ address feedback * feat: ✨ add migration * Empty-Commit
14 lines
202 B
GraphQL
14 lines
202 B
GraphQL
fragment CalculateTaxesEvent on Event {
|
|
__typename
|
|
... on CalculateTaxes {
|
|
taxBase {
|
|
...TaxBase
|
|
}
|
|
recipient {
|
|
privateMetadata {
|
|
key
|
|
value
|
|
}
|
|
}
|
|
}
|
|
}
|