This GraphQL query fetches All Currencies
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
query allCurrencies { currencies (skip: 0, limit: 3) { results { ACL code countries { ...on Element { value } } createdAt digits id name number symbol updatedAt } } }
{ "data": { "currencies": { "results": [ { "ACL": null, "code": "GBP", "countries": [ { "value": "Guernsey" }, { "value": "Isle Of Man" }, { "value": "Jersey" }, { "value": "United Kingdom Of Great Britain And Northern Ireland (The)" } ], "createdAt": "2019-12-17T17:14:39.662Z", "digits": 2, "id": "Dnx35cmKrl", "name": "UK Pound", "number": "826", "symbol": "£", "updatedAt": "2019-12-17T17:14:39.662Z" }, { "ACL": null, "code": "CZK", "countries": [ { "value": "Czechia" } ], "createdAt": "2019-12-17T17:14:39.662Z", "digits": 2, "id": "M51AYLvGnB", "name": "Czech Koruna", "number": "203", "symbol": "Kč", "updatedAt": "2019-12-17T17:14:39.662Z" }, { "ACL": null, "code": "LVL", "countries": null, "createdAt": "2019-12-17T17:14:39.663Z", "digits": null, "id": "2H1P3LLxYJ", "name": "Latvian Lat", "number": null, "symbol": "Ls", "updatedAt": "2019-12-17T17:14:39.663Z" } ] } } }