INPUT_OBJECT
CreateProductInput
Create an importer's product.
link GraphQL Schema definition
- input CreateProductInput {
- # 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
- # The ID of the importer associated with the product.
- : KeyInput!
- # Line items associated with a Product. Required for entry.
- : [EntryLineInput!]
- }