OBJECT

TimesheetsMutation

Mutations that act on Timesheets.

link GraphQL Schema definition

  • type TimesheetsMutation {
  • # update timesheet time.
  • #
  • # Arguments
  • # work_time: The start,end and total time of the timesheet
  • updateTimes(work_time: [WorkTimes]): SuccessResults
  • # Attach a digital docket to a timesheet.
  • #
  • # Arguments
  • # timesheet: The timesheet and digital docket to associate
  • attachDigitalDocket(timesheet: TimesheetDigitalDocket): SuccessResult
  • }