OBJECT
PageInfo
Pagination metadata.
link GraphQL Schema definition
1 type PageInfo { 2 3 # Limit of the items on one page. 4 Int : 5 6 # Offset of the items' list. 7 Int! : 8 9 # Total number of items. 10 Int! : 11 12 # Current page number. 13 Int : 14 15 # Next page number. Null if there is no next page. 16 Int : 17 18 # Previous page number. Null if there is no previous page. 19 Int : 20 21 # First page number. 22 Int : 23 24 # Last (total) page number. 25 Int : 26 27 # Sort args. 28 SortArg]! : [ 29 30 }
link Required by
- AttendanceStatementsPagePaginated list of attendance statements.
- LocationsPagenull
- OvertimeBalanceStatementsPagePaginated list of overtime balance statements.
- OvertimeBalanceTransactionPagePaginated list of overtime balance transactions.
- PositionsPagenull
- ProjectsPagePaginated list of projects.
- TeamsPagenull
- TimeOffBalancesPagePaginated list of time off balances.
- TimeOffRequestUsageStatementsPagePaginated list of time off request usage statements.
- TimeOffTypesPagenull
- TimesheetsPagePaginated list of timesheets.
- UsersPagePaginated list of users.
- WorkSchedulesPagePaginated list of Work Schedules.