GraphQL OBJECT

ProductSelectionItem

Item in the product selection.

link Definition

  • type ProductSelectionItem {
  • # The product for selection.
  • product: Product
  • # Parent of the item, if existing.
  • parent: ProductSelectionItem
  • # Children of the item.
  • children: [ProductSelectionItem]
  • # Product characteristic option that belongs to the item.
  • productCharacteristicOption: ProductCharacteristicOption!
  • # Text element for the product selection item.
  • textElement: TextElement
  • # Position of the product selection item. Determines where the product variation
  • # displays in the cart.
  • position: Int!
  • # Date and time when the product selection item was created.
  • creationDate: DateTime!
  • # User who created the product selection item.
  • createdBy: UserAccount!
  • # Date and time when the last edit occurred.
  • lastModifyDate: DateTime!
  • # User who last edited the product selection item.
  • lastModifiedBy: UserAccount!
  • # Product selection of the product selection item.
  • productSelection: ProductSelection
  • }