This GraphQL query fetches All MPS
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 allMPS { mPS (skip: 0, limit: 3) { results { ACL accuracy adminCode1 adminCode2 adminCode3 adminName1 adminName2 adminName3 countryCode createdAt geoPosition { latitude longitude } id placeName postalCode updatedAt } } }
{ "data": { "mPS": { "results": [ { "ACL": null, "accuracy": "6", "adminCode1": "120", "adminCode2": "", "adminCode3": "", "adminName1": "Tinian", "adminName2": "", "adminName3": "", "countryCode": "MP", "createdAt": "2020-02-21T13:04:43.491Z", "geoPosition": { "latitude": 15.029, "longitude": 145.616 }, "id": "OlyWNAVeUO", "placeName": "Tinian", "postalCode": "96952", "updatedAt": "2020-02-21T13:04:43.491Z" }, { "ACL": null, "accuracy": "6", "adminCode1": "100", "adminCode2": "", "adminCode3": "", "adminName1": "Rota", "adminName2": "", "adminName3": "", "countryCode": "MP", "createdAt": "2020-02-21T13:04:43.491Z", "geoPosition": { "latitude": 14.154, "longitude": 145.201 }, "id": "ejuZPwMqmD", "placeName": "Rota", "postalCode": "96951", "updatedAt": "2020-02-21T13:04:43.491Z" }, { "ACL": null, "accuracy": "6", "adminCode1": "110", "adminCode2": "", "adminCode3": "", "adminName1": "Saipan", "adminName2": "", "adminName3": "", "countryCode": "MP", "createdAt": "2020-02-21T13:04:43.491Z", "geoPosition": { "latitude": 15.1685, "longitude": 145.7408 }, "id": "LU0idEsery", "placeName": "Saipan", "postalCode": "96950", "updatedAt": "2020-02-21T13:04:43.491Z" } ] } } }