This GraphQL query fetches All BMS
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 allBMS {
bMS (skip: 0, limit: 3) {
results {
ACL
accuracy
adminCode1
adminCode2
adminCode3
adminName1
adminName2
adminName3
countryCode
createdAt
geoPosition {
latitude
longitude
}
id
placeName
postalCode
updatedAt
}
}
}{
"data": {
"bMS": {
"results": [
{
"ACL": null,
"accuracy": "1",
"adminCode1": "01",
"adminCode2": "",
"adminCode3": "",
"adminName1": "Devonshire Parish",
"adminName2": "",
"adminName3": "",
"countryCode": "BM",
"createdAt": "2020-02-21T13:05:06.842Z",
"geoPosition": {
"latitude": 32.3264,
"longitude": -64.7411
},
"id": "XBXuyf55bN",
"placeName": "Devonshire",
"postalCode": "FL 05",
"updatedAt": "2020-02-21T13:05:06.842Z"
},
{
"ACL": null,
"accuracy": "",
"adminCode1": "01",
"adminCode2": "",
"adminCode3": "",
"adminName1": "Devonshire Parish",
"adminName2": "",
"adminName3": "",
"countryCode": "BM",
"createdAt": "2020-02-21T13:05:06.842Z",
"geoPosition": {
"latitude": 32.3028,
"longitude": -64.7558
},
"id": "D0T5EQnUJf",
"placeName": "Devonshire",
"postalCode": "DV 08",
"updatedAt": "2020-02-21T13:05:06.842Z"
},
{
"ACL": null,
"accuracy": "",
"adminCode1": "01",
"adminCode2": "",
"adminCode3": "",
"adminName1": "Devonshire Parish",
"adminName2": "",
"adminName3": "",
"countryCode": "BM",
"createdAt": "2020-02-21T13:05:06.841Z",
"geoPosition": {
"latitude": 32.3028,
"longitude": -64.7558
},
"id": "2H3grDLfkB",
"placeName": "Devonshire",
"postalCode": "DV 01",
"updatedAt": "2020-02-21T13:05:06.841Z"
}
]
}
}
}