This GraphQL query fetches All AnnualLeavebyCountries
0
1
2
3
4
5
6
7
8
9
10
11
12
13
query allAnnualLeavebyCountries { annualLeavebyCountries (skip: 0, limit: 3) { results { ACL Country PaidPublicHolidays PaidVacationDays TotalPaidLeave createdAt id updatedAt } } }
{ "data": { "annualLeavebyCountries": { "results": [ { "ACL": null, "Country": "Angola", "PaidPublicHolidays": 11, "PaidVacationDays": 22, "TotalPaidLeave": 33, "createdAt": "2020-01-22T13:14:37.679Z", "id": "MBFznf8RHk", "updatedAt": "2020-01-22T13:14:37.679Z" }, { "ACL": null, "Country": "Afghanistan", "PaidPublicHolidays": 15, "PaidVacationDays": 20, "TotalPaidLeave": 35, "createdAt": "2020-01-22T13:14:37.679Z", "id": "FyhFCWjBeY", "updatedAt": "2020-01-22T13:14:37.679Z" }, { "ACL": null, "Country": "Algeria", "PaidPublicHolidays": 11, "PaidVacationDays": 30, "TotalPaidLeave": 41, "createdAt": "2020-01-22T13:14:37.679Z", "id": "e3tBE6wG2T", "updatedAt": "2020-01-22T13:14:37.679Z" } ] } } }