Currency
Currency
Currency in our platform is associated with an operating country; currently one currency per operating country.
Each client account is associated with an operating country; currently one operating country per client.
Each event is associated with one client.
Each order is associated with one event.
The following query demonstrates how to get the cost of all tickets for a batch of orders, and the currency associated with each order.
{
viewer(token: "your-token-here") {
getOrders {
items {
id
event {
client {
operatingCountry {
currency
}
}
}
tickets {
items {
unitCost
}
}
}
}
}
}