This GraphQL query fetches All MWS
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 allMWS { mWS (skip: 0, limit: 3) { results { ACL accuracy adminCode1 adminCode2 adminCode3 adminName1 adminName2 adminName3 countryCode createdAt geoPosition { latitude longitude } id placeName postalCode updatedAt } } }
{ "data": { "mWS": { "results": [ { "ACL": null, "accuracy": "4", "adminCode1": "C", "adminCode2": "07", "adminCode3": "", "adminName1": "Central Region", "adminName2": "Dowa", "adminName3": "", "countryCode": "MW", "createdAt": "2020-02-21T13:05:45.626Z", "geoPosition": { "latitude": -13.5319, "longitude": 33.7401 }, "id": "snnCNr2mKT", "placeName": "Mponela", "postalCode": "204104", "updatedAt": "2020-02-21T13:05:45.626Z" }, { "ACL": null, "accuracy": "4", "adminCode1": "C", "adminCode2": "06", "adminCode3": "", "adminName1": "Central Region", "adminName2": "Dedza", "adminName3": "", "countryCode": "MW", "createdAt": "2020-02-21T13:05:45.626Z", "geoPosition": { "latitude": -14.4167, "longitude": 34.1167 }, "id": "7kdJvA2Hir", "placeName": "Kachere", "postalCode": "209108", "updatedAt": "2020-02-21T13:05:45.626Z" }, { "ACL": null, "accuracy": "4", "adminCode1": "C", "adminCode2": "07", "adminCode3": "", "adminName1": "Central Region", "adminName2": "Dowa", "adminName3": "", "countryCode": "MW", "createdAt": "2020-02-21T13:05:45.626Z", "geoPosition": { "latitude": -13.7545, "longitude": 33.8265 }, "id": "hiI4K7sxCh", "placeName": "Mkukula", "postalCode": "204107", "updatedAt": "2020-02-21T13:05:45.626Z" } ] } } }