INPUT_OBJECT

CreateTimesheetEntryInput

Input data for timesheet entry creation.

link GraphQL Schema definition

1input CreateTimesheetEntryInput {
4
2# Start time in format: HH:mm:ss.
3startAt: String
7
5# End time in format: HH:mm:ss.
6endAt: String
10
8# Part of day as PartOfDay enum.
9partOfDay: PartOfDay
13
11# Timesheet entry type.
12type: TimesheetEntryType!
16
14# Optional note.
15note: String
19
17# Id of the project.
18projectId: ID
20}