OBJECT
Subsession
A subsession
link GraphQL Schema definition
- type Subsession {
- # Assiduité calculée depuis les connexions e-learning
- : Boolean
- # Durée moyenne d'un créneau dans l'intervalle de dates
- : Float
- # Couleur du module
- : String
- # List of costs of the sub session (depend on rooms, instructor...)
- : [TrainingSessionCost]
- # DEPRECATED - Use `trainingSessionSlots` from `trainingSession` instead
- : [TrainingSessionDate] @deprecated( reason: "Use `trainingSessionSlots` from `trainingSession` instead" )
- # Dates en mode intervalle ?
- : Boolean
- # Durée en jours
- : Float
- # Durée en heures
- : Float
- : ID
- # Creation date and time - format: YYYY-MM-DDThh:mm:sss
- : NaiveDateTime
- # Modalité
- : String
- # Nom du module
- : String
- # Spanish administration only - Are all instructors teaching remotely?
- : Boolean
- # Spanish administration only - Are all trainees attending remotely?
- : Boolean
- : TrainingSession
- # List of training session slots. For interval, 2 slots are created at the
- # beginning and at the end of the interval.
- : [TrainingSessionSlot]
- # Last update date and time - format: YYYY-MM-DDThh:mm:sss
- : NaiveDateTime
- }