OBJECT

Collection

link GraphQL Schema definition

  • type Collection implements Node {
  • id: ID!
  • # The name of the collection.
  • name: String!
  • # The description of the collection.
  • description: String
  • # The total duration of all the posts in the collection.
  • totalDuration: Int!
  • # The total number of posts in the collection.
  • totalPosts: Int!
  • # The tenant that the topic belongs to.
  • tenant: Tenant
  • # The posts in the collection.
  • postcollections: [PostCollection!]
  • # The cover image of the collection.
  • cover: Image
  • # The users that have completed the collection.
  • userCompletions: [UserCollectionCompletion!]
  • posts: [Post!]!
  • educationCredit: EducationCredit
  • userCompletion: UserCollectionCompletion
  • }