Skip to main content

CompletedActionPlan

A single action plan of a client

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

Fields

CompletedActionPlan.createdAt ● LocalDateTime! non-null scalar

Creation date and time of the action plan

CompletedActionPlan.createdBy ● Employee! non-null object

Employee that created the action plan

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

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

CompletedActionPlan.entries.timeOfDay ● TimeOfDayType enum

CompletedActionPlan.id ● ActionPlanID! non-null scalar

Unique identifier

CompletedActionPlan.keyMessage ● String! non-null scalar

Single key message for the action plan, in free text

Interfaces

ActionPlan interface

Common properties for all action plans

Returned By

completeActionPlan mutation

Member Of

Client object