GraphQL OBJECT

ProductInformation

Product details for the item.

link Definition

  • type ProductInformation {
  • # Unique ID of the product.
  • productId: Long!
  • # Your internal product ID.
  • internalProductId: String
  • # Product name used in customer communication.
  • productName: String!
  • # Product description. Corresponds to the Additional name information in the
  • # Commerce Assistant.
  • additionalNameInformation: String
  • # Indicates whether the product has a subscription pricing model.
  • isSubscription: Boolean!
  • # Type of product.
  • productType: ProductType
  • }