OBJECT

TimesheetWorkItem

A timesheet work item.

link GraphQL Schema definition

  • type TimesheetWorkItem {
  • # The timesheet the work item is recorded for.
  • timesheet: Timesheet
  • # The work item id.
  • work_item: WorkItem
  • # (DEPRCEATED) The work item code id.
  • work_item_code: WorkItem @deprecated( reason: "Use work_item instead" )
  • # The start time of the work item.
  • start_time: DateTimeExpression!
  • # The end time of the work item.
  • end_time: DateTimeExpression!
  • }