OBJECT
SessionType
link GraphQL Schema definition
- type SessionType {
- : ID!
- # Session's name
- : String!
- # Session type. Can be of 'assessment'or 'practice'
- : String!
- # Amount of steps for this session
- : Int!
- # Time the session was created(Optional - default=now)
- : DateTime!
- # Time the session was finished(Optional - default=null)
- : DateTime
- : Boolean!
- : UserType!
- : TrainingType!
- : [EventType!]!
- }