OBJECT
Collection
link GraphQL Schema definition
- type Collection implements Node {
- : ID!
- # The name of the collection.
- : String!
- # The description of the collection.
- : String
- # The total duration of all the posts in the collection.
- : Int!
- # The total number of posts in the collection.
- : Int!
- # The tenant that the topic belongs to.
- : Tenant
- # The posts in the collection.
- : [PostCollection!]
- # The cover image of the collection.
- : Image
- # The users that have completed the collection.
- : [UserCollectionCompletion!]
- : [Post!]!
- : EducationCredit
- : UserCollectionCompletion
- }