This GraphQL query fetches All PRS
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 allPRS { pRS (skip: 0, limit: 3) { results { ACL accuracy adminCode1 adminCode2 adminCode3 adminName1 adminName2 adminName3 countryCode createdAt geoPosition { latitude longitude } id placeName postalCode updatedAt } } }
{ "data": { "pRS": { "results": [ { "ACL": null, "accuracy": "4", "adminCode1": "011", "adminCode2": "", "adminCode3": "", "adminName1": "Anasco", "adminName2": "", "adminName3": "", "countryCode": "PR", "createdAt": "2020-02-21T13:05:16.230Z", "geoPosition": { "latitude": 18.2827, "longitude": -67.1396 }, "id": "Fw04ejIuDl", "placeName": "Anasco", "postalCode": "00610", "updatedAt": "2020-02-21T13:05:16.230Z" }, { "ACL": null, "accuracy": "4", "adminCode1": "009", "adminCode2": "", "adminCode3": "", "adminName1": "Aibonito", "adminName2": "", "adminName3": "", "countryCode": "PR", "createdAt": "2020-02-21T13:05:16.230Z", "geoPosition": { "latitude": 18.1544, "longitude": -66.2329 }, "id": "q1fAXim40o", "placeName": "La Plata", "postalCode": "00786", "updatedAt": "2020-02-21T13:05:16.230Z" }, { "ACL": null, "accuracy": "4", "adminCode1": "013", "adminCode2": "", "adminCode3": "", "adminName1": "Arecibo", "adminName2": "", "adminName3": "", "countryCode": "PR", "createdAt": "2020-02-21T13:05:16.230Z", "geoPosition": { "latitude": 18.4338, "longitude": -66.6138 }, "id": "rDySjFMUkm", "placeName": "Sabana Hoyos", "postalCode": "00688", "updatedAt": "2020-02-21T13:05:16.230Z" } ] } } }