OBJECT

SessionType

link GraphQL Schema definition

  • type SessionType {
  • id: ID!
  • # Session's name
  • name: String!
  • # Session type. Can be of 'assessment'or 'practice'
  • category: String!
  • # Amount of steps for this session
  • totalSteps: Int!
  • # Time the session was created(Optional - default=now)
  • createdAt: DateTime!
  • # Time the session was finished(Optional - default=null)
  • completedAt: DateTime
  • isComplete: Boolean!
  • user: UserType!
  • training: TrainingType!
  • eventSet: [EventType!]!
  • }