This GraphQL query fetches All FOS
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 allFOS { fOS (skip: 0, limit: 3) { results { ACL accuracy adminCode1 adminCode2 adminCode3 adminName1 adminName2 adminName3 countryCode createdAt geoPosition { latitude longitude } id placeName postalCode updatedAt } } }
{ "data": { "fOS": { "results": [ { "ACL": null, "accuracy": "4", "adminCode1": "", "adminCode2": "", "adminCode3": "", "adminName1": "", "adminName2": "", "adminName3": "", "countryCode": "FO", "createdAt": "2020-02-21T13:04:58.864Z", "geoPosition": { "latitude": 61.9, "longitude": -6.8667 }, "id": "78Zuh6Hxry", "placeName": "Skopun", "postalCode": "240", "updatedAt": "2020-02-21T13:04:58.864Z" }, { "ACL": null, "accuracy": "4", "adminCode1": "", "adminCode2": "", "adminCode3": "", "adminName1": "", "adminName2": "", "adminName3": "", "countryCode": "FO", "createdAt": "2020-02-21T13:04:58.864Z", "geoPosition": { "latitude": 61.8425, "longitude": -6.8078 }, "id": "kg2nKfsmOu", "placeName": "Sandur", "postalCode": "215", "updatedAt": "2020-02-21T13:04:58.864Z" }, { "ACL": null, "accuracy": "1", "adminCode1": "", "adminCode2": "", "adminCode3": "", "adminName1": "", "adminName2": "", "adminName3": "", "countryCode": "FO", "createdAt": "2020-02-21T13:04:58.864Z", "geoPosition": { "latitude": 62.046, "longitude": -6.7995 }, "id": "akB8wS5gKr", "placeName": "Kaldbaksbotnur", "postalCode": "185", "updatedAt": "2020-02-21T13:04:58.864Z" } ] } } }