OBJECT

CustomerTrainee

A trainee belonging to a customer in a session

link GraphQL Schema definition

  • type CustomerTrainee {
  • abandons: [Abandon]
  • assessment: String
  • attendanceProofUrl: String
  • convocationUrl: String
  • elearningStats: ElearningStats
  • # Trainee specific extranet access. Be careful, this link is personnal and should
  • # not be shared between trainees.
  • extranetUrl: String
  • id: ID
  • # Creation date and time - format: YYYY-MM-DDThh:mm:sss
  • insertedAt: NaiveDateTime
  • # Returns true if the trainee follows the session on working time
  • onWorkingTime: Boolean
  • # Returns true if the trainee was successful in their training
  • passed: Boolean
  • # Returns a percentage of completion of a trainee in the training session. Takes
  • # into account the subsession the customer is assigned to. This information can be
  • # found in the 'suivi apprenants' tab in the app
  • sessionCompletion: Float
  • signatures: [Signature]
  • subsessions: [Subsession]
  • trainee: Trainee
  • # Last update date and time - format: YYYY-MM-DDThh:mm:sss
  • updatedAt: NaiveDateTime
  • }