Skip to main content

ProductPrice

No description

type ProductPrice {
value: Float! @deprecated
gross: Float!
quantity: Int!
discount: Discount
taxCode: String!
type: ProductPriceType!
net(
taxZone: String
): Float
}

Fields

ProductPrice.value ● Float! deprecated non-null scalar

DEPRECATED

Product price value deprecated in favor of 'net' and 'gross' fields

Product price value

ProductPrice.gross ● Float! non-null scalar

Gross price value

ProductPrice.quantity ● Int! non-null scalar

The quantity this price was calculated for

ProductPrice.discount ● Discount object

The type of discount, if any, used to calculate the price

ProductPrice.taxCode ● String! non-null scalar

The taxCode of the product this price is calculated for

ProductPrice.type ● ProductPriceType! non-null enum

The type of the price calculation

ProductPrice.net ● Float scalar

ProductPrice.net.taxZone ● String scalar

The taxZone used to calculate the net price. Overrules the taxZone applied to the parent field/query.

Returned By

explainPrice query

Member Of

Product object