OBJECT

TimesheetEntry

Represents a timesheet entry.

link GraphQL Schema definition

1type TimesheetEntry {
2
3# Id.
4id: ID
5
6# Start time.
7startAt: Time
8
9# End time.
10endAt: Time
11
12# Part of day.
13partOfDay: PartOfDay
14
15# Timesheet entry type.
16type: TimesheetEntryType
17
18# Optional note.
19note: String
20
21# Project.
22project: Project
23
24}