This GraphQL query fetches All NZS
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 allNZS { nZS (skip: 0, limit: 3) { results { ACL accuracy adminCode1 adminCode2 adminCode3 adminName1 adminName2 adminName3 countryCode createdAt geoPosition { latitude longitude } id placeName postalCode updatedAt } } }
{ "data": { "nZS": { "results": [ { "ACL": null, "accuracy": "4", "adminCode1": "E7", "adminCode2": "", "adminCode3": "", "adminName1": "Auckland", "adminName2": "", "adminName3": "", "countryCode": "NZ", "createdAt": "2020-02-21T13:09:18.186Z", "geoPosition": { "latitude": -36.8667, "longitude": 174.5833 }, "id": "AQ2NwihHLV", "placeName": "Swanson", "postalCode": "0614", "updatedAt": "2020-02-21T13:09:18.186Z" }, { "ACL": null, "accuracy": "4", "adminCode1": "E7", "adminCode2": "", "adminCode3": "", "adminName1": "Auckland", "adminName2": "", "adminName3": "", "countryCode": "NZ", "createdAt": "2020-02-21T13:09:18.186Z", "geoPosition": { "latitude": -36.8184, "longitude": 174.7098 }, "id": "2xB02ejvDe", "placeName": "Chatswood", "postalCode": "0626", "updatedAt": "2020-02-21T13:09:18.186Z" }, { "ACL": null, "accuracy": "4", "adminCode1": "E7", "adminCode2": "", "adminCode3": "", "adminName1": "Auckland", "adminName2": "", "adminName3": "", "countryCode": "NZ", "createdAt": "2020-02-21T13:09:18.186Z", "geoPosition": { "latitude": -36.8647, "longitude": 174.6477 }, "id": "zzhIaEwCOU", "placeName": "Te Atatu South", "postalCode": "0610", "updatedAt": "2020-02-21T13:09:18.186Z" } ] } } }