This GraphQL query fetches All LUS
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 allLUS {
lUS (skip: 0, limit: 3) {
results {
ACL
accuracy
adminCode1
adminCode2
adminCode3
adminName1
adminName2
adminName3
countryCode
createdAt
geoPosition {
latitude
longitude
}
id
placeName
postalCode
updatedAt
}
}
}{
"data": {
"lUS": {
"results": [
{
"ACL": null,
"accuracy": "4",
"adminCode1": "CA",
"adminCode2": "03",
"adminCode3": "",
"adminName1": "Capellen",
"adminName2": "Dippach",
"adminName3": "",
"countryCode": "LU",
"createdAt": "2020-02-21T14:10:31.100Z",
"geoPosition": {
"latitude": 49.5877,
"longitude": 5.9782
},
"id": "RGL5j7lI2L",
"placeName": "Dippach",
"postalCode": "L-4906",
"updatedAt": "2020-02-21T14:10:31.100Z"
},
{
"ACL": null,
"accuracy": "6",
"adminCode1": "CA",
"adminCode2": "03",
"adminCode3": "",
"adminName1": "Capellen",
"adminName2": "Dippach",
"adminName3": "",
"countryCode": "LU",
"createdAt": "2020-02-21T14:10:31.100Z",
"geoPosition": {
"latitude": 49.5746,
"longitude": 5.987
},
"id": "PZgeElBTHH",
"placeName": "Bettange-sur-Mess",
"postalCode": "L-4975",
"updatedAt": "2020-02-21T14:10:31.100Z"
},
{
"ACL": null,
"accuracy": "6",
"adminCode1": "CA",
"adminCode2": "03",
"adminCode3": "",
"adminName1": "Capellen",
"adminName2": "Dippach",
"adminName3": "",
"countryCode": "LU",
"createdAt": "2020-02-21T14:10:31.100Z",
"geoPosition": {
"latitude": 49.5816,
"longitude": 5.9653
},
"id": "Pge7Ux1Bim",
"placeName": "Sprinkange",
"postalCode": "L-4998",
"updatedAt": "2020-02-21T14:10:31.100Z"
}
]
}
}
}