This GraphQL query fetches All LIS
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 allLIS { lIS (skip: 0, limit: 3) { results { ACL accuracy adminCode1 adminCode2 adminCode3 adminName1 adminName2 adminName3 countryCode createdAt geoPosition { latitude longitude } id placeName postalCode updatedAt } } }
{ "data": { "lIS": { "results": [ { "ACL": null, "accuracy": "6", "adminCode1": "7007", "adminCode2": "", "adminCode3": "", "adminName1": "Eschen", "adminName2": "", "adminName3": "", "countryCode": "LI", "createdAt": "2020-02-21T13:04:47.084Z", "geoPosition": { "latitude": 47.209, "longitude": 9.5223 }, "id": "l7QU1Pqmfy", "placeName": "Eschen", "postalCode": "9492", "updatedAt": "2020-02-21T13:04:47.084Z" }, { "ACL": null, "accuracy": "6", "adminCode1": "7004", "adminCode2": "", "adminCode3": "", "adminName1": "Triesenberg", "adminName2": "", "adminName3": "", "countryCode": "LI", "createdAt": "2020-02-21T13:04:47.084Z", "geoPosition": { "latitude": 47.115, "longitude": 9.5831 }, "id": "ZUAx5mwESs", "placeName": "Triesenberg", "postalCode": "9497", "updatedAt": "2020-02-21T13:04:47.084Z" }, { "ACL": null, "accuracy": "6", "adminCode1": "7001", "adminCode2": "", "adminCode3": "", "adminName1": "Vaduz", "adminName2": "", "adminName3": "", "countryCode": "LI", "createdAt": "2020-02-21T13:04:47.084Z", "geoPosition": { "latitude": 47.1431, "longitude": 9.5256 }, "id": "cBiV2Y4pGJ", "placeName": "Vaduz", "postalCode": "9490", "updatedAt": "2020-02-21T13:04:47.084Z" } ] } } }