GraphQL OBJECT

CatalogStructureItem

link Definition

  • type CatalogStructureItem {
  • # Unique id of catalog item.
  • id: Int
  • # Name of catalog item.
  • name: String
  • # Id of parent catalog item.
  • parentId: Int
  • # Position of catalog item on it's level.
  • position: Int
  • # Parameter name of catalog item.
  • parameterName: String
  • # Group catalog item belongs to.
  • group: String
  • # Product id of catalog item.
  • productId: Int
  • # Product name of catalog item.
  • productName: String
  • # Product type of catalog item.
  • productType: ProductTypeEnum
  • }