OBJECT

CourseGroup

Relationship between a user group and a course

link GraphQL Schema definition

  • type CourseGroup {
  • # the course associated with this membership
  • course: Course
  • # The unique identifier of the group
  • id: ID!
  • # start of course
  • start_at: String
  • # When true, new group members start the course at the current time, overriding
  • # start_at
  • start_on_group_assignment: Boolean!
  • # the user group associated with this membership
  • user_group: UserGroup
  • }