This GraphQL query fetches All GGS
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
query allGGS { gGS (skip: 0, limit: 3) { results { ACL accuracy adminCode1 adminCode2 adminCode3 adminName1 adminName2 adminName3 countryCode createdAt geoPosition { latitude longitude } id placeName postalCode updatedAt } } }
{ "data": { "gGS": { "results": [ { "ACL": null, "accuracy": "", "adminCode1": "", "adminCode2": "", "adminCode3": "", "adminName1": "", "adminName2": "Guernsey Channel Islands", "adminName3": "", "countryCode": "GG", "createdAt": "2020-02-21T13:04:47.766Z", "geoPosition": { "latitude": 49.45, "longitude": -2.6 }, "id": "bGqhnokf37", "placeName": "St Martin", "postalCode": "GY4", "updatedAt": "2020-02-21T13:04:47.766Z" }, { "ACL": null, "accuracy": "", "adminCode1": "", "adminCode2": "", "adminCode3": "", "adminName1": "", "adminName2": "Guernsey Channel Islands", "adminName3": "", "countryCode": "GG", "createdAt": "2020-02-21T13:04:47.766Z", "geoPosition": { "latitude": 49.45, "longitude": -2.6 }, "id": "wJmFTIMECT", "placeName": "Castel", "postalCode": "GY5", "updatedAt": "2020-02-21T13:04:47.766Z" }, { "ACL": null, "accuracy": "4", "adminCode1": "", "adminCode2": "", "adminCode3": "", "adminName1": "", "adminName2": "Guernsey Channel Islands", "adminName3": "", "countryCode": "GG", "createdAt": "2020-02-21T13:04:47.766Z", "geoPosition": { "latitude": 49.4333, "longitude": -2.65 }, "id": "iBqUEbNDxj", "placeName": "Torteval", "postalCode": "GY8", "updatedAt": "2020-02-21T13:04:47.766Z" } ] } } }