OBJECT

TimesheetActivity

A single timesheet activity

link GraphQL Schema definition

  • type TimesheetActivity {
  • # The unique timesheet activity ID.
  • id: Int!
  • # The timesheet related to the activity.
  • timesheet: String!
  • # The time the timesheet activity starts.
  • start_datetime: DateTimeExpression!
  • # The time the timesheet activity ends.
  • end_datetime: DateTimeExpression!
  • # The associated activity
  • activity: Activity
  • # The time the timesheet activity starts.
  • start_time: TimeExpression! @deprecated( reason: "Use `start_datetime` instead." )
  • # The time the timesheet activity ends.
  • end_time: TimeExpression! @deprecated( reason: "Use `end_datetime` instead." )
  • }