This GraphQL query fetches All GTS
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 allGTS { gTS (skip: 0, limit: 3) { results { ACL accuracy adminCode1 adminCode2 adminCode3 adminName1 adminName2 adminName3 countryCode createdAt geoPosition { latitude longitude } id placeName postalCode updatedAt } } }
{ "data": { "gTS": { "results": [ { "ACL": null, "accuracy": "1", "adminCode1": "01", "adminCode2": "", "adminCode3": "", "adminName1": "DEPTO DE ALTA VERAPAZ", "adminName2": "", "adminName3": "", "countryCode": "GT", "createdAt": "2020-02-21T13:06:00.620Z", "geoPosition": { "latitude": 15.5792, "longitude": -89.9208 }, "id": "FeinS6doQx", "placeName": "LA TINTA (PANZOS)", "postalCode": "16016", "updatedAt": "2020-02-21T13:06:00.620Z" }, { "ACL": null, "accuracy": "1", "adminCode1": "01", "adminCode2": "", "adminCode3": "", "adminName1": "DEPTO DE ALTA VERAPAZ", "adminName2": "", "adminName3": "", "countryCode": "GT", "createdAt": "2020-02-21T13:06:00.620Z", "geoPosition": { "latitude": 15.5792, "longitude": -89.9208 }, "id": "DYzJG8IhAU", "placeName": "PANCAJCHE (TUCURU)", "postalCode": "16018", "updatedAt": "2020-02-21T13:06:00.620Z" }, { "ACL": null, "accuracy": "4", "adminCode1": "01", "adminCode2": "", "adminCode3": "", "adminName1": "DEPTO DE ALTA VERAPAZ", "adminName2": "", "adminName3": "", "countryCode": "GT", "createdAt": "2020-02-21T13:06:00.620Z", "geoPosition": { "latitude": 15.5667, "longitude": -89.8167 }, "id": "ve4MMc6vvf", "placeName": "CAHABON", "postalCode": "16012", "updatedAt": "2020-02-21T13:06:00.620Z" } ] } } }