This GraphQL query fetches All GLS
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 allGLS { gLS (skip: 0, limit: 3) { results { ACL accuracy adminCode1 adminCode2 adminCode3 adminName1 adminName2 adminName3 countryCode createdAt geoPosition { latitude longitude } id placeName postalCode updatedAt } } }
{ "data": { "gLS": { "results": [ { "ACL": null, "accuracy": "4", "adminCode1": "", "adminCode2": "", "adminCode3": "", "adminName1": "", "adminName2": "", "adminName3": "", "countryCode": "GL", "createdAt": "2020-02-21T13:04:51.522Z", "geoPosition": { "latitude": 60.45, "longitude": -45.55 }, "id": "AC6B8ONt9B", "placeName": "Alluitsup Paa", "postalCode": "3919", "updatedAt": "2020-02-21T13:04:51.522Z" }, { "ACL": null, "accuracy": "4", "adminCode1": "", "adminCode2": "", "adminCode3": "", "adminName1": "", "adminName2": "", "adminName3": "", "countryCode": "GL", "createdAt": "2020-02-21T13:04:51.522Z", "geoPosition": { "latitude": 60.05, "longitude": -43.1667 }, "id": "h5TCGg1vb0", "placeName": "Ikerasassuaq", "postalCode": "3924", "updatedAt": "2020-02-21T13:04:51.522Z" }, { "ACL": null, "accuracy": "4", "adminCode1": "", "adminCode2": "", "adminCode3": "", "adminName1": "", "adminName2": "", "adminName3": "", "countryCode": "GL", "createdAt": "2020-02-21T13:04:51.522Z", "geoPosition": { "latitude": 61.1667, "longitude": -48.45 }, "id": "oMKcNDyKt7", "placeName": "Arsuk", "postalCode": "3932", "updatedAt": "2020-02-21T13:04:51.522Z" } ] } } }