Skip to main content

AttendanceOverview

Contains data for all employee absences/attendances/breaks for a given month.

type AttendanceOverview {
absenceSummary: [AbsenceSummary]!
breakTime: Int!
dailyAttendanceSummary: [DailyAttendanceSummary!]
overtimeForMonth: Int!
surchargeSummary: [SurchargeData!]
totalOvertime: Int!
totalSurcharges: Int!
workingTime: Int!
}

Fields

AttendanceOverview.absenceSummary ● [AbsenceSummary]! non-null object

Monthly summary about the employee's absences

AttendanceOverview.breakTime ● Int! non-null scalar

Monthly total break time of the employee in minutes

AttendanceOverview.dailyAttendanceSummary ● [DailyAttendanceSummary!] list object

List of attendance summaries for every day of the month

AttendanceOverview.overtimeForMonth ● Int! non-null scalar

Monthly sum of the employee's overtime in minutes

AttendanceOverview.surchargeSummary ● [SurchargeData!] list object

Type and total time for every surcharge applied to the client for the given month

AttendanceOverview.totalOvertime ● Int! non-null scalar

Total overtime of employee in minutes

AttendanceOverview.totalSurcharges ● Int! non-null scalar

Monthly total surcharges (of all types) of the employee in minutes

AttendanceOverview.workingTime ● Int! non-null scalar

Monthly total working time of the employee in minutes

Member Of

Employee object