This GraphQL query fetches All BDS
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 allBDS { bDS (skip: 0, limit: 3) { results { ACL accuracy adminCode1 adminCode2 adminCode3 adminName1 adminName2 adminName3 countryCode createdAt geoPosition { latitude longitude } id placeName postalCode updatedAt } } }
{ "data": { "bDS": { "results": [ { "ACL": null, "accuracy": "", "adminCode1": "81", "adminCode2": "3026", "adminCode3": "", "adminName1": "Dhaka Division", "adminName2": "Dhaka", "adminName3": "Gulshan", "countryCode": "BD", "createdAt": "2020-02-21T13:12:12.594Z", "geoPosition": { "latitude": 23.7931, "longitude": 90.4048 }, "id": "1qZ8Bu7n8A", "placeName": "Banani TSO", "postalCode": "1213", "updatedAt": "2020-02-21T13:12:12.594Z" }, { "ACL": null, "accuracy": "", "adminCode1": "81", "adminCode2": "3026", "adminCode3": "", "adminName1": "Dhaka Division", "adminName2": "Dhaka", "adminName3": "New market", "countryCode": "BD", "createdAt": "2020-02-21T13:12:12.594Z", "geoPosition": { "latitude": 23.7433, "longitude": 90.3841 }, "id": "gKJpE2nhUm", "placeName": "New Market TSO", "postalCode": "1205", "updatedAt": "2020-02-21T13:12:12.594Z" }, { "ACL": null, "accuracy": "", "adminCode1": "81", "adminCode2": "3026", "adminCode3": "", "adminName1": "Dhaka Division", "adminName2": "Dhaka", "adminName3": "Sutrapur", "countryCode": "BD", "createdAt": "2020-02-21T13:12:12.594Z", "geoPosition": { "latitude": 23.7415, "longitude": 90.4276 }, "id": "hc6hDPma37", "placeName": "Wari TSO", "postalCode": "1203", "updatedAt": "2020-02-21T13:12:12.594Z" } ] } } }