PackageInput

(INPUT_OBJECT)

Dimensions and weight of a product package

link GraphQL Schema definition

  • input PackageInput {
  • # unique identifier of the package
  • id: ID
  • # package lengtt. Longest package dimension
  • length: DimensionInput
  • # package width
  • width: DimensionInput
  • # package height
  • height: DimensionInput
  • # total package weight
  • weight: WeightInput
  • # additional note or description
  • note: String
  • # custom label or name for the package
  • label: String
  • }