Currency
Provides information about a currency, such as its name, symbol, ISO code, and formatting details.
Type Definition
type Currency {
id: Int
name: String
symbol: String
isoCode: String
}Fields
Relationships
The Currency type is referenced by multiple other types in the schema. It appears as a field in CartPaymentMethod to specify the currency of a payment method, in Country to indicate the default currency for a region, and in Customer to represent a customer’s preferred currency.
Example
{
id
name
symbol
isoCode
}Implements
None