OBJECT

AttendanceStatement

Represents an attendance statement.

link GraphQL Schema definition

1type AttendanceStatement {
2
3# Expected time in seconds.
4expectedTime: Int
5
6# Tracked time in seconds.
7trackedTime: Int
8
9# Total time in seconds.
10totalTime: Int
11
12# Time spent on time-offs in seconds.
13timeOffTime: Int
14
15# Time spent on holidays in seconds.
16holidayTime: Int
17
18# Balance in seconds.
19balance: Int
20
21# Overtime in seconds.
22overtime: Int
23
24# Count of meal vouchers.
25mealVouchersCount: Int
26
27# User.
28user: User
29
30# Detailed tracked time per project.
31projects(dateFrom: Date!, dateTo: Date!, id: ID): [CategorizedTrackedTime]
32
33}