This GraphQL query fetches All PHS
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 allPHS { pHS (skip: 0, limit: 3) { results { ACL accuracy adminCode1 adminCode2 adminCode3 adminName1 adminName2 adminName3 countryCode createdAt geoPosition { latitude longitude } id placeName postalCode updatedAt } } }
{ "data": { "pHS": { "results": [ { "ACL": null, "accuracy": "", "adminCode1": "", "adminCode2": "", "adminCode3": "", "adminName1": "", "adminName2": "", "adminName3": "", "countryCode": "PH", "createdAt": "2020-02-21T13:11:17.111Z", "geoPosition": { "latitude": 14.6894, "longitude": 120.98 }, "id": "zjO29AaBb9", "placeName": "Far East Broadcasting Corporation", "postalCode": "0560", "updatedAt": "2020-02-21T13:11:17.111Z" }, { "ACL": null, "accuracy": "", "adminCode1": "", "adminCode2": "", "adminCode3": "", "adminName1": "", "adminName2": "", "adminName3": "", "countryCode": "PH", "createdAt": "2020-02-21T13:11:17.111Z", "geoPosition": { "latitude": 14.6385, "longitude": 121.0428 }, "id": "etRCyklkjj", "placeName": "National Irrigation Administration", "postalCode": "0830", "updatedAt": "2020-02-21T13:11:17.111Z" }, { "ACL": null, "accuracy": "", "adminCode1": "", "adminCode2": "", "adminCode3": "", "adminName1": "", "adminName2": "", "adminName3": "", "countryCode": "PH", "createdAt": "2020-02-21T13:11:17.111Z", "geoPosition": { "latitude": 14.6014, "longitude": 121.0365 }, "id": "SL4rVICVqU", "placeName": "Radio Bible Class", "postalCode": "0410", "updatedAt": "2020-02-21T13:11:17.111Z" } ] } } }