OBJECT
CourseGroup
Relationship between a user group and a course
link GraphQL Schema definition
- type CourseGroup {
- # the course associated with this membership
- Course :
- # The unique identifier of the group
- ID! :
- # start of course
- String :
- # When true, new group members start the course at the current time, overriding
- # start_at
- Boolean :
- # the user group associated with this membership
- UserGroup :
- }