CategoryInput

(INPUT_OBJECT)

for editing product category

link GraphQL Schema definition

  • input CategoryInput {
  • # main title of category
  • title: String
  • # H1 heading of category (separate from title)
  • h1: String
  • # category visibility state in the eshop
  • visibility: CategoryVisibility
  • # category introduction text
  • intro: String
  • # category bottom text
  • bottom: String
  • # identificator for SEO-friendly URL
  • url_identificator: String
  • # SEO category title for HTML tag TITLE
  • seo_title: String
  • # SEO meta description
  • seo_description: String
  • }