OBJECT
AttendanceStatement
Represents an attendance statement.
link GraphQL Schema definition
1 type AttendanceStatement { 2 3 # Expected time in seconds. 4 Int : 5 6 # Tracked time in seconds. 7 Int : 8 9 # Total time in seconds. 10 Int : 11 12 # Time spent on time-offs in seconds. 13 Int : 14 15 # Time spent on holidays in seconds. 16 Int : 17 18 # Balance in seconds. 19 Int : 20 21 # Overtime in seconds. 22 Int : 23 24 # Count of meal vouchers. 25 Int : 26 27 # User. 28 User : 29 30 # Detailed tracked time per project. 31 Date!, : Date!, : ID): [CategorizedTrackedTime] ( : 32 33 }