This GraphQL query fetches All MKS
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 allMKS { mKS (skip: 0, limit: 3) { results { ACL accuracy adminCode1 adminCode2 adminCode3 adminName1 adminName2 adminName3 countryCode createdAt geoPosition { latitude longitude } id placeName postalCode updatedAt } } }
{ "data": { "mKS": { "results": [ { "ACL": null, "accuracy": "4", "adminCode1": "", "adminCode2": "", "adminCode3": "", "adminName1": "", "adminName2": "", "adminName3": "", "countryCode": "MK", "createdAt": "2020-02-21T13:05:11.700Z", "geoPosition": { "latitude": 42.1067, "longitude": 21.1089 }, "id": "FfmdJVWLTT", "placeName": "Nerashte", "postalCode": "1203", "updatedAt": "2020-02-21T13:05:11.700Z" }, { "ACL": null, "accuracy": "4", "adminCode1": "", "adminCode2": "", "adminCode3": "", "adminName1": "", "adminName2": "", "adminName3": "", "countryCode": "MK", "createdAt": "2020-02-21T13:05:11.700Z", "geoPosition": { "latitude": 41.9961, "longitude": 21.5822 }, "id": "Z1lxYAsyHO", "placeName": "Ilinden", "postalCode": "1041", "updatedAt": "2020-02-21T13:05:11.700Z" }, { "ACL": null, "accuracy": "4", "adminCode1": "", "adminCode2": "", "adminCode3": "", "adminName1": "", "adminName2": "", "adminName3": "", "countryCode": "MK", "createdAt": "2020-02-21T13:05:11.700Z", "geoPosition": { "latitude": 42, "longitude": 21.4333 }, "id": "IvQjfx2fZ6", "placeName": "Skopje", "postalCode": "1000", "updatedAt": "2020-02-21T13:05:11.700Z" } ] } } }