Available queries
Associated query | Returns multiple results |
---|---|
Currency | |
Currencies | ✔️ |
Available fields
Label | Type | Notes | Null |
---|---|---|---|
default_currency | Currency Info | The default currency | |
exchange_rate | decimal(12,6) | The exchange rate from this currency to the default currency | |
id | integer | The currency's id | |
iso | string | The currency's iso | |
is_default | boolean | Indicate if the currency is the default | |
label | string | The currency's label | |
sign | string | The currency's sign | |
symbol_template | string | The currency's template |
Example of a query
query{
Currencies{
edges{
node{
default_currency{
iso
}
exchange_rate
id
iso
is_default
label
sign
symbol_template
}
}
}
}