This GraphQL query fetches All Time_Zones_Datasets
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
query allTime_Zones_Datasets { time_Zones_Datasets (skip: 0, limit: 3) { results { ACL Country { id } CountryCode DST_Jul_1_2020 TimeZone UTC_Jan_1_2020 createdAt id updatedAt } } }
{ "data": { "time_Zones_Datasets": { "results": [ { "ACL": null, "Country": { "id": "oqts6mjw76" }, "CountryCode": "NG", "DST_Jul_1_2020": 1, "TimeZone": "Africa/Lagos", "UTC_Jan_1_2020": 1, "createdAt": "2020-02-11T18:48:43.231Z", "id": "Czx7Sxf5x5", "updatedAt": "2020-02-11T19:20:50.128Z" }, { "ACL": null, "Country": { "id": "qEgnSc4sip" }, "CountryCode": "BI", "DST_Jul_1_2020": 2, "TimeZone": "Africa/Bujumbura", "UTC_Jan_1_2020": 2, "createdAt": "2020-02-11T18:48:43.230Z", "id": "gDuq17M3jb", "updatedAt": "2020-02-11T18:57:04.860Z" }, { "ACL": null, "Country": { "id": "hvaqvemFp8" }, "CountryCode": "ZW", "DST_Jul_1_2020": 2, "TimeZone": "Africa/Harare", "UTC_Jan_1_2020": 2, "createdAt": "2020-02-11T18:48:43.231Z", "id": "aKdV2TgVJG", "updatedAt": "2020-02-11T19:33:45.459Z" } ] } } }