This GraphQL query fetches All PMS
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 allPMS { pMS (skip: 0, limit: 3) { results { ACL accuracy adminCode1 adminCode2 adminCode3 adminName1 adminName2 adminName3 countryCode createdAt geoPosition { latitude longitude } id placeName postalCode updatedAt } } }
{ "data": { "pMS": { "results": [ { "ACL": null, "accuracy": "5", "adminCode1": "97501", "adminCode2": "97501", "adminCode3": "", "adminName1": "Miquelon-Langlade", "adminName2": "Miquelon-Langlade", "adminName3": "", "countryCode": "PM", "createdAt": "2020-02-21T13:04:43.970Z", "geoPosition": { "latitude": 47.0975, "longitude": -56.3814 }, "id": "4IZjyF8r6G", "placeName": "Miquelon", "postalCode": "97500", "updatedAt": "2020-02-21T13:04:43.970Z" }, { "ACL": null, "accuracy": "5", "adminCode1": "97502", "adminCode2": "", "adminCode3": "", "adminName1": "Saint-Pierre", "adminName2": "", "adminName3": "", "countryCode": "PM", "createdAt": "2020-02-21T13:04:43.970Z", "geoPosition": { "latitude": 46.7809, "longitude": -56.172 }, "id": "9IpLztxo4d", "placeName": "Saint-Pierre", "postalCode": "97500", "updatedAt": "2020-02-21T13:04:43.970Z" } ] } } }