INPUT_OBJECT
UpdateProductInput
Update an importer's product.
link GraphQL Schema definition
- input UpdateProductInput {
- # Item number for the product
- : String
- # Brief description of the product
- : String
- # Product's display name
- : String
- # The 12 numeric characters that represent the universal product number
- : String
- # Additional product notes
- : String
- # Units per box
- : Int
- # Box weight
- : Float
- # Box width
- : Float
- # Box length
- : Float
- # Box height
- : Float
- # Unit system when measuring box height, length, width, and weight
- : ProductPackingUnit
- # An array of product tags
- : [ProductTag]
- # The client's unique identifier
- : ID
- # Line items associated with a Product. Required for entry.
- : [EntryLineInput!]
- }