OBJECT

ShippingParcel

Shipping Parcel dimensions and weight.

link GraphQL Schema definition

  • type ShippingParcel implements Node {
  • depth: Float
  • # Depth converted from 'distance_unit' to 'cm'
  • depthInCm: Float
  • distanceUnit: String!
  • id: ID!
  • length: Float
  • # Length converted from 'distance_unit' to 'cm'
  • lengthInCm: Float
  • massUnit: String!
  • weight: Float
  • # Weight converted from 'mass_unit' to 'kg'
  • weightInKg: Float
  • width: Float
  • # Width converted from 'distance_unit' to 'cm'
  • widthInCm: Float
  • }