The Database Hub | Back4App
The Database Hub | Back4App
How it works
  • Log In
  • Sign Up

  1. Back4App
  2. 💵Currencies
Public

59
52
59
52
  • DatabaseDatabase
  • GraphQL API PlaygroundAPI Playground
  • Get Started GuideGet Started
  • IssuesIssues
  • ContributorsContributors
  • Database
    Database
    Get Started Guide
    Get Started
    Issues
    Issues
    Contributors
    Contributors

All Currencies

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"
        }
      ]
    }
  }
}