This GraphQL query fetches All VIS
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 allVIS { vIS (skip: 0, limit: 3) { results { ACL accuracy adminCode1 adminCode2 adminCode3 adminName1 adminName2 adminName3 countryCode createdAt geoPosition { latitude longitude } id placeName postalCode updatedAt } } }
{ "data": { "vIS": { "results": [ { "ACL": null, "accuracy": "6", "adminCode1": "78", "adminCode2": "020", "adminCode3": "", "adminName1": "Vi", "adminName2": "St. John", "adminName3": "", "countryCode": "VI", "createdAt": "2020-02-21T13:04:48.403Z", "geoPosition": { "latitude": 18.3282, "longitude": -64.7407 }, "id": "uKFifCw9Uo", "placeName": "St John", "postalCode": "00830", "updatedAt": "2020-02-21T13:04:48.403Z" }, { "ACL": null, "accuracy": "", "adminCode1": "78", "adminCode2": "030", "adminCode3": "", "adminName1": "Vi", "adminName2": "St. Thomas", "adminName3": "", "countryCode": "VI", "createdAt": "2020-02-21T13:04:48.403Z", "geoPosition": { "latitude": 18.3223, "longitude": -64.9637 }, "id": "zMDABJNpTi", "placeName": "St Thomas", "postalCode": "00804", "updatedAt": "2020-02-21T13:04:48.403Z" }, { "ACL": null, "accuracy": "6", "adminCode1": "78", "adminCode2": "010", "adminCode3": "", "adminName1": "Vi", "adminName2": "St. Croix", "adminName3": "", "countryCode": "VI", "createdAt": "2020-02-21T13:04:48.403Z", "geoPosition": { "latitude": 17.7099, "longitude": -64.7009 }, "id": "tslDb9sGOQ", "placeName": "Kingshill", "postalCode": "00851", "updatedAt": "2020-02-21T13:04:48.403Z" } ] } } }