Skip to main content

DraftActionPlan

A single draft action plan of a client

type DraftActionPlan implements ActionPlan {
createdAt: LocalDateTime!
createdBy: Employee
entries(
timeOfDay: TimeOfDayType
): [ActionPlanEntry!]!
keyMessage: String
}

Fields

DraftActionPlan.createdAt ● LocalDateTime! non-null scalar

Creation date and time of the action plan

DraftActionPlan.createdBy ● Employee object

Employee that created the action plan

DraftActionPlan.entries ● [ActionPlanEntry!]! non-null interface

All entries of the action plan. Can be filtered by time of day

DraftActionPlan.entries.timeOfDay ● TimeOfDayType enum

DraftActionPlan.keyMessage ● String scalar

Single key message for the action plan, in free text

Interfaces

ActionPlan interface

Common properties for all action plans

Returned By

createActionPlanDraft mutation

Member Of

Client object