OBJECT
Category
A Category for Articles
link GraphQL Schema definition
- type Category {
- # Id
- : Int!
- # Translations
- : [CategoryTranslation!]!
- # Is Category enabled?
- : Boolean!
- # Date of creation
- : DateTime!
- # Date of last update
- : DateTime!
- # Parent Category if exists
- : Category
- # Articles that belong to the Category
- : [Article]
- # Inheritance status
- : String!
- # Id of the root Category
- : Int
- # Site that owns this Category
- : PublicSite
- }