New Shipping Method

newShippingMethod #

newShippingMethod(params: NewShippingMethodParams) ShippingMethod

Example #

mutation newShippingMethod($params: NewShippingMethodParams!){
  newShippingMethod(params: $params) {
    id
    displayName
    deliveryCharge
    deliveryTimeInDays
    WeightUnit
    isFlat
    isActive
  }
}

Try It Now