This GraphQL query fetches All NOS
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 allNOS { nOS (skip: 0, limit: 3) { results { ACL accuracy adminCode1 adminCode2 adminCode3 adminName1 adminName2 adminName3 countryCode createdAt geoPosition { latitude longitude } id placeName postalCode updatedAt } } }
{ "data": { "nOS": { "results": [ { "ACL": null, "accuracy": "", "adminCode1": "08", "adminCode2": "1505", "adminCode3": "", "adminName1": "Møre og Romsdal", "adminName2": "Kristiansund", "adminName3": "", "countryCode": "NO", "createdAt": "2020-02-21T14:31:19.331Z", "geoPosition": { "latitude": 63.0275, "longitude": 7.7907 }, "id": "KsfVYqhD3G", "placeName": "Frei", "postalCode": "6521", "updatedAt": "2020-02-21T14:31:19.331Z" }, { "ACL": null, "accuracy": "", "adminCode1": "08", "adminCode2": "1505", "adminCode3": "", "adminName1": "Møre og Romsdal", "adminName2": "Kristiansund", "adminName3": "", "countryCode": "NO", "createdAt": "2020-02-21T14:31:19.331Z", "geoPosition": { "latitude": 63.0275, "longitude": 7.7907 }, "id": "hjB32NqwnY", "placeName": "Frei", "postalCode": "6523", "updatedAt": "2020-02-21T14:31:19.331Z" }, { "ACL": null, "accuracy": "", "adminCode1": "08", "adminCode2": "1505", "adminCode3": "", "adminName1": "Møre og Romsdal", "adminName2": "Kristiansund", "adminName3": "", "countryCode": "NO", "createdAt": "2020-02-21T14:31:19.331Z", "geoPosition": { "latitude": 63.0275, "longitude": 7.7907 }, "id": "gGGy0cYqGL", "placeName": "Frei", "postalCode": "6522", "updatedAt": "2020-02-21T14:31:19.331Z" } ] } } }