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