Category

(OBJECT)

Category of products

link GraphQL Schema definition

  • type Category {
  • # system's internal ID
  • id: ID!
  • # category's main title
  • title: String!
  • # H1 heading of category (separate from title)
  • h1: String
  • # SEO-friendly URL identificator (raw slug)
  • url_identificator: String
  • # title for menu
  • menu_title: String
  • # category's description
  • description: String @deprecated( reason: "Use 'seo_description' field instead." )
  • # category language
  • language: LanguageVersion!
  • # URL to category's webpage
  • link: Url!
  • # category visibility state in the eshop
  • visibility: CategoryVisibility
  • # 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
  • # introductory text displayed before listing the category content
  • intro: String
  • # bottom text displayed after listing the category content
  • bottom: String
  • # SEO meta description of category
  • seo_description: String
  • # SEO product title for HTML tag TITLE
  • seo_title: String
  • }

link Require by