This GraphQL query fetches All DES
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
query allDES { dES (skip: 0, limit: 3) { results { ACL adminCode cityId containingState { id } country createdAt featureCode id location { latitude longitude } name population updatedAt } } }
{ "data": { "dES": { "results": [ { "ACL": null, "adminCode": "DE", "cityId": 4141748, "containingState": { "id": "jM3n2Rl4nc" }, "country": "US", "createdAt": "2019-12-11T12:39:29.968Z", "featureCode": "PPL", "id": "bw3MYY4H0v", "location": { "latitude": 39.11345, "longitude": -75.54187 }, "name": "Camden", "population": 3505, "updatedAt": "2019-12-11T12:39:29.968Z" }, { "ACL": null, "adminCode": "DE", "cityId": 4142485, "containingState": { "id": "jM3n2Rl4nc" }, "country": "US", "createdAt": "2019-12-11T12:39:29.968Z", "featureCode": "PPL", "id": "7oM43bGBZb", "location": { "latitude": 39.00845, "longitude": -75.57798 }, "name": "Felton", "population": 1402, "updatedAt": "2019-12-11T12:39:29.968Z" }, { "ACL": null, "adminCode": "DE", "cityId": 4142226, "containingState": { "id": "jM3n2Rl4nc" }, "country": "US", "createdAt": "2019-12-11T12:39:29.968Z", "featureCode": "PPL", "id": "w1U5vVkLOa", "location": { "latitude": 38.45651, "longitude": -75.57715 }, "name": "Delmar", "population": 1730, "updatedAt": "2019-12-11T12:39:29.968Z" } ] } } }