BookOvertimeInput
Input for booking a new overtime record for a given employee with quantity and reason
input BookOvertimeInput {
date: Date!
employeeId: EmployeeID!
notes: String
overtime: Int!
}
Fields
BookOvertimeInput.date ● Date! non-null scalar
Date of the overtime record
BookOvertimeInput.employeeId ● EmployeeID! non-null scalar
ID of the employee
BookOvertimeInput.notes ● String scalar
Notes about the origin of the overtime, optional
BookOvertimeInput.overtime ● Int! non-null scalar
Number of overtime in minutes
Member Of
bookOvertime mutation