This GraphQL query fetches All FMS
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 allFMS { fMS (skip: 0, limit: 3) { results { ACL accuracy adminCode1 adminCode2 adminCode3 adminName1 adminName2 adminName3 countryCode createdAt geoPosition { latitude longitude } id placeName postalCode updatedAt } } }
{ "data": { "fMS": { "results": [ { "ACL": null, "accuracy": "1", "adminCode1": "03", "adminCode2": "", "adminCode3": "", "adminName1": "State of Chuuk", "adminName2": "", "adminName3": "", "countryCode": "FM", "createdAt": "2020-02-21T13:04:45.161Z", "geoPosition": { "latitude": 7.1383, "longitude": 151.5031 }, "id": "mlG79AZQud", "placeName": "Chuuk", "postalCode": "96942", "updatedAt": "2020-02-21T13:04:45.161Z" }, { "ACL": null, "accuracy": "1", "adminCode1": "01", "adminCode2": "", "adminCode3": "", "adminName1": "State of Kosrae", "adminName2": "", "adminName3": "", "countryCode": "FM", "createdAt": "2020-02-21T13:04:45.161Z", "geoPosition": { "latitude": 7.1383, "longitude": 151.5031 }, "id": "ifJliDD8kr", "placeName": "Kosrae", "postalCode": "96944", "updatedAt": "2020-02-21T13:04:45.161Z" }, { "ACL": null, "accuracy": "1", "adminCode1": "02", "adminCode2": "", "adminCode3": "", "adminName1": "State of Pohnpei", "adminName2": "", "adminName3": "", "countryCode": "FM", "createdAt": "2020-02-21T13:04:45.161Z", "geoPosition": { "latitude": 7.1383, "longitude": 151.5031 }, "id": "oPf4wKNckW", "placeName": "Pohnpei", "postalCode": "96941", "updatedAt": "2020-02-21T13:04:45.161Z" } ] } } }