OBJECT
Timesheet
Represents a timesheet.
link GraphQL Schema definition
1 type Timesheet { 2 3 # Id. 4 ID : 5 6 # Date. 7 Date : 8 9 # Expected time based on work schedule in seconds. 10 Int : 11 12 # Tracked time in seconds. 13 Int : 14 15 # Time off time in seconds. 16 Int : 17 18 # Holiday time in seconds. 19 Int : 20 21 # Sum of tracked, holiday, time off time minus break time. 22 Int : 23 24 # Break time in seconds. 25 Int : 26 27 # Is workday. 28 Boolean : 29 30 # List of time offs on timesheet day. 31 TimesheetTimeOff] : [ 32 33 # List of holidays on timesheet day. 34 TimesheetHoliday] : [ 35 36 # List of timesheet entries. 37 TimesheetEntry] : [ 38 39 }