GraphQL INPUT_OBJECT

SubscriptionCartItemInput

Input for shopping cart preview for a subscription item.

link Definition

  • input SubscriptionCartItemInput {
  • # Unique ID of the product.
  • productId: Int
  • # Your internal product ID.
  • internalProductId: String
  • # Number of items.
  • quantity: Int
  • # Running number of the item in the subscription. If not set, running numbers are
  • # inferred from array indexes.
  • runningNo: Int
  • # Set to true to reset the interval of the subscription item.
  • resetInterval: Boolean
  • }