GraphQL OBJECT

TextElement

Descriptive text to display in the cart for a product variation.

link Definition

  • type TextElement {
  • # Unique ID of the text element.
  • id: Int!
  • # Languages in which text element information can be entered.
  • availableLanguages: [Language]
  • # Date and time when the text element was created.
  • creationDate: DateTime
  • # User who created the text element.
  • createdBy: UserAccount!
  • # Internal name of the text element.
  • name: String
  • # Date and time when the last edit occurred.
  • lastModifyDate: DateTime
  • # User who last edited the text element.
  • lastModifiedBy: UserAccount!
  • # Default language of the text element.
  • baseLanguage: Language
  • # Text of the element in one or more languages.
  • texts: [LocalizedString]
  • # List of product characteristics in which the text element is used.
  • referringProductCharacteristics: [ProductCharacteristic]
  • # List of product characteristics options in which the text element is used.
  • referringProductCharacteristicOptions: [ProductCharacteristicOption]
  • # List of product selection items in which the text element is used.
  • referringProductSelectionItems: [ProductSelectionItem]
  • }