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]
- # Image associated with the Category
- : Media
- # Route associated with the Category
- : SiteRoute
- # Display order of the Category (-10 to 10)
- : Int
- # Custom CSS class for articles
- : String
- # Custom CSS class for category
- : String
- # Display articles and category in article list
- : Boolean
- # Publish articles in sitemap
- : Boolean
- # Inheritance status
- : String!
- # Id of the root Category
- : Int
- # Site that owns this Category
- : PublicSite
- }