CourseGroup
Relationship between a user group and a course
Fields
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!
""" 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}