This GraphQL query fetches All Continents
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
query allContinents { continents (skip: 0, limit: 3) { results { ACL code countries (skip: 0, limit: 3) { results { id } } createdAt id name updatedAt } } }
{ "data": { "continents": { "results": [ { "ACL": null, "code": "SA", "countries": { "results": [ { "id": "bnEB9QdocE" } ] }, "createdAt": "2020-05-06T20:07:27.269Z", "id": "BUlMB8DkiR", "name": "South America", "updatedAt": "2020-05-06T20:07:28.831Z" } ] } } }