OBJECT

Category

A category (eg. tag in a taxonomy)

link GraphQL Schema definition

  • type Category {
  • # The caretaker of this category, if any
  • caretaker: AnyContext
  • # A JSON document containing more info beyond the default fields
  • extraInfo: Json
  • facet: String
  • # The numeric primary key of the category
  • id: ID
  • name: String
  • # The parent category (in a tree-based taxonomy)
  • parentCategory: Category
  • parentCategoryId: String
  • prefix: String
  • # List of child categories (in a tree-based taxonomy)
  • subCategories: [CategoriesPage]
  • summary: String
  • }