INPUT_OBJECT

TrainingSessionFilters

A filter data structure for specific training sessions

link GraphQL Schema definition

  • input TrainingSessionFilters {
  • code: String
  • # Only training session ending after this date will be taken into account
  • endedAfter: Date
  • # Only training session ending before this date will be taken into account
  • endedBefore: Date
  • frozen: Boolean
  • name: String
  • pipelineState: TrainingSessionPipelineState
  • # Only training session starting after this date will be taken into account
  • startedAfter: Date
  • # Only training session starting before this date will be taken into account
  • startedBefore: Date
  • }