Skip to main content

OrderStats

Contains the statistics of the order. This object should be used to access the statistics of the order.

type OrderStats {
estimatedWeight: Float!
totalItems: Int!
totalPrice: Float!
totalUnits: Int!
}

Fields

OrderStats.estimatedWeight ● Float! non-null scalar

The estimated weight of the order. This is the sum of the weight of each item in the order.

OrderStats.totalItems ● Int! non-null scalar

The total number of different products in the order.

OrderStats.totalPrice ● Float! non-null scalar

The total price of the order. This is the sum of the price of each item in the order.

OrderStats.totalUnits ● Int! non-null scalar

The total number of units in the order. This is the sum of the quantity of each item in the order.

Member Of

Order object