INPUT_OBJECT

UpdateProductInput

Update an importer's product.

link GraphQL Schema definition

  • input UpdateProductInput {
  • # Item number for the product
  • item: String
  • # Brief description of the product
  • description: String
  • # Product's display name
  • displayName: String
  • # The 12 numeric characters that represent the universal product number
  • upc: String
  • # Additional product notes
  • notes: String
  • # Units per box
  • unitsPerBox: Int
  • # Box weight
  • boxWeight: Float
  • # Box width
  • boxWidth: Float
  • # Box length
  • boxLength: Float
  • # Box height
  • boxHeight: Float
  • # Unit system when measuring box height, length, width, and weight
  • packingUnits: ProductPackingUnit
  • # An array of product tags
  • tags: [ProductTag]
  • # The client's unique identifier
  • cid: ID
  • # Line items associated with a Product. Required for entry.
  • lines: [EntryLineInput!]
  • }

link Require by