Skip to Content

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

FieldTypeDescription
idIntUnique identifier for this currency.
nameStringDisplay name of this currency.
symbolStringCurrency symbol (e.g., €, $).
isoCodeStringISO 4217 code for this currency.

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