OBJECT
CourseType
link GraphQL Schema definition
- type CourseType {
- : ID!
- # Course's name
- : String!
- # Course's description
- : String
- : OrganizationType!
- : [UserType!]!
- # When the course was created(Optional - default=now)
- : DateTime!
- : [TrainingType!]!
- }