OBJECT
CourseMembership
Relationship between a user and a course
link GraphQL Schema definition
- type CourseMembership {
- # the course associated with this membership
- Course :
- # id of course related to this membership
- ID :
- # status of related course completion
- String :
- # date membership was created
- String :
- # The unique identifier of the membership
- ID! :
- # The next incomplete item
- CourseItem :
- # The incomplete item after the next incomplete item
- CourseItem :
- # start of course
- String :
- # date membership was updated
- String :
- # the user associated with this membership
- User :
- # id of user related to this membership
- ID :
- }