Category

(OBJECT)

Category of products

link GraphQL Schema definition

  • type Category {
  • # system's internal ID
  • id: ID!
  • # category's main title
  • title: String!
  • # title for menu
  • menu_title: String
  • # Category's description
  • description: String
  • # category language
  • language: LanguageVersion!
  • # URL to category's webpage
  • link: Url!
  • # category contains used goods
  • used_goods: Boolean!
  • # whether category may be part of fulltext search result
  • search_indexed: Boolean
  • # Parent category
  • parent_category: Category
  • # Children categories
  • children_categories: [Category]
  • # products in category
  • # please note order of products is independent for each category
  • products: ProductList
  • }

link Require by