This GraphQL query fetches All Continentscountriescities_Continents
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
query allContinentscountriescities_Continents { continentscountriescities_Continents (skip: 0, limit: 3) { results { ACL code countries (skip: 0, limit: 3) { results { id } } createdAt id name updatedAt } } }
{ "data": { "continentscountriescities_Continents": { "results": [ { "ACL": null, "code": "AF", "countries": { "results": [ { "id": "09fXl7u3FD" }, { "id": "0fiEmgrqKa" }, { "id": "0ncikAUv2i" } ] }, "createdAt": "2019-12-09T20:53:12.050Z", "id": "X2rEcTJnsE", "name": "Africa", "updatedAt": "2019-12-12T16:08:04.299Z" }, { "ACL": null, "code": "NA", "countries": { "results": [ { "id": "27DB6uofpp" }, { "id": "4lgb4MnCu4" }, { "id": "5xyA61UG1h" } ] }, "createdAt": "2019-12-09T20:53:12.050Z", "id": "vZNZcahFvu", "name": "North America", "updatedAt": "2019-12-12T16:08:06.294Z" }, { "ACL": null, "code": "OC", "countries": { "results": [ { "id": "0iYnsd3adu" }, { "id": "2Icy8PIAyj" }, { "id": "2vGNu7Yn7D" } ] }, "createdAt": "2019-12-09T20:53:12.050Z", "id": "E6LHZzkHr6", "name": "Oceania", "updatedAt": "2019-12-12T16:08:07.698Z" } ] } } }