OBJECT

Category

A Category for Articles

link GraphQL Schema definition

  • type Category {
  • # Id
  • id: Int!
  • # Translations
  • translations: [CategoryTranslation!]!
  • # Is Category enabled?
  • enabled: Boolean!
  • # Date of creation
  • createdAt: DateTime!
  • # Date of last update
  • updatedAt: DateTime!
  • # Parent Category if exists
  • parent: Category
  • # Articles that belong to the Category
  • articles: [Article]
  • # Inheritance status
  • inheritanceStatus: String!
  • # Id of the root Category
  • parentRootId: Int
  • # Site that owns this Category
  • site: PublicSite
  • }