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

  1. Back4App
  2. World Continents, Countries, and Cities
Public

1210
5628
1210
5628
  • DatabaseDatabase
  • GraphQL API PlaygroundAPI Playground
  • Get Started GuideGet Started
  • IssuesIssues
  • ContributorsContributors
  • Database
    Database
    Get Started Guide
    Get Started
    Issues
    Issues
    Contributors
    Contributors

All Languages

This GraphQL query fetches All Languages


0
1
2
3
4
5
6
7
8
9
10
11
12
query allLanguages {
      languages (skip: 0, limit: 3) {
        results {
          ACL
          code
          createdAt
          id
          name
          native
          updatedAt
        }
      }
    }
{
  "data": {
    "languages": {
      "results": [
        {
          "ACL": null,
          "code": "am",
          "createdAt": "2019-12-09T20:54:30.298Z",
          "id": "ZRyHALUT2e",
          "name": "Amharic",
          "native": "አማርኛ",
          "updatedAt": "2019-12-09T20:54:30.298Z"
        },
        {
          "ACL": null,
          "code": "es",
          "createdAt": "2019-12-09T20:54:30.298Z",
          "id": "HsJGht1G4p",
          "name": "Spanish",
          "native": "Español",
          "updatedAt": "2019-12-09T20:54:30.298Z"
        },
        {
          "ACL": null,
          "code": "lb",
          "createdAt": "2019-12-09T20:54:30.938Z",
          "id": "7o2GPfyD6a",
          "name": "Luxembourgish",
          "native": "Lëtzebuergesch",
          "updatedAt": "2019-12-09T20:54:30.938Z"
        }
      ]
    }
  }
}