This GraphQL query fetches All MIES
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 allMIES {
mies (skip: 0, limit: 3) {
results {
ACL
accuracy
adminCode1
adminCode2
adminCode3
adminName1
adminName2
adminName3
countryCode
createdAt
geoPosition {
latitude
longitude
}
id
placeName
postalCode
updatedAt
}
}
}{
"data": {
"mies": {
"results": [
{
"ACL": null,
"accuracy": "3",
"adminCode1": "JHR",
"adminCode2": "",
"adminCode3": "",
"adminName1": "Johor",
"adminName2": "",
"adminName3": "",
"countryCode": "MY",
"createdAt": "2020-02-21T13:18:23.790Z",
"geoPosition": {
"latitude": 1.4968,
"longitude": 103.6524
},
"id": "Hqj9EC3XmZ",
"placeName": "Nusajaya",
"postalCode": "79150",
"updatedAt": "2020-02-21T13:18:23.790Z"
},
{
"ACL": null,
"accuracy": "3",
"adminCode1": "JHR",
"adminCode2": "",
"adminCode3": "",
"adminName1": "Johor",
"adminName2": "",
"adminName3": "",
"countryCode": "MY",
"createdAt": "2020-02-21T13:18:23.792Z",
"geoPosition": {
"latitude": 1.5014,
"longitude": 103.6439
},
"id": "bvzzbZX9f1",
"placeName": "Nusajaya",
"postalCode": "79517",
"updatedAt": "2020-02-21T13:18:23.792Z"
},
{
"ACL": null,
"accuracy": "3",
"adminCode1": "JHR",
"adminCode2": "",
"adminCode3": "",
"adminName1": "Johor",
"adminName2": "",
"adminName3": "",
"countryCode": "MY",
"createdAt": "2020-02-21T13:18:23.792Z",
"geoPosition": {
"latitude": 1.5014,
"longitude": 103.6439
},
"id": "43eO0BZ4yy",
"placeName": "Nusajaya",
"postalCode": "79514",
"updatedAt": "2020-02-21T13:18:23.792Z"
}
]
}
}
}