CourseGroup
Relationship between a user group and a course
Fields
paused_at
· ISO8601DateTime · When the group was paused; nil if not paused start_at
· ISO8601DateTime · start of course start_on_group_assignment
· Boolean!
· required · When true, new group members start the course at the current time, overriding start_at user_group
· UserGroup · the user group associated with this membership Used By
Definition
"""Relationship between a user group and a course"""type CourseGroup { """ the course associated with this membership """ course: Course
""" The unique identifier of the group """ id: ID!
""" Whether the course group is currently paused """ is_paused: Boolean!
""" When the group was paused; nil if not paused """ paused_at: ISO8601DateTime
""" start of course """ start_at: ISO8601DateTime
""" 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}