OBJECT

Abandon

Abandon data for a trainee in a training session

link GraphQL Schema definition

  • type Abandon {
  • # DEPRECATED - Abandon are now linked to training session slots.
  • abandonEndDate: String @deprecated( reason: "Abandon are now linked to training session slots." )
  • # DEPRECATED - Abandon are now linked to training session slots.
  • abandonStartDate: String @deprecated( reason: "Abandon are now linked to training session slots." )
  • comment: String
  • commentJustifiedAbsence: String
  • id: ID
  • # Creation date and time - format: YYYY-MM-DDThh:mm:sss
  • insertedAt: NaiveDateTime
  • isAbandon: Boolean
  • isBack: Boolean
  • isJustified: Boolean
  • trainee: Trainee
  • trainingSessionSlots: [TrainingSessionSlot]
  • # Last update date and time - format: YYYY-MM-DDThh:mm:sss
  • updatedAt: NaiveDateTime
  • }