LowestPriceType
Type containing information about the lowest price during last 30 days and the legal comparison price (EU). Observe that discount is calculated against comparison price and not the regular price.
type LowestPriceType {
sellingPriceIncVat: Decimal!
sellingPriceExVat: Decimal!
comparisonPriceIncVat: Decimal!
comparisonPriceExVat: Decimal!
lowestPriceIncVat: Decimal!
lowestPriceExVat: Decimal!
discountIncVat: Decimal!
discountExVat: Decimal!
discountPercentage: Int!
vat: Decimal!
isDiscounted: Boolean!
sellingPriceIncVatFormatted: String
sellingPriceExVatFormatted: String
comparisonPriceIncVatFormatted: String
comparisonPriceExVatFormatted: String
lowestPriceIncVatFormatted: String
lowestPriceExVatFormatted: String
discountIncVatFormatted: String
discountExVatFormatted: String
vatFormatted: String
}
Fields
sellingPriceIncVat ● Decimal! non-null scalar required
The selling price including VAT
sellingPriceExVat ● Decimal! non-null scalar required
The selling price excluding VAT
comparisonPriceIncVat ● Decimal! non-null scalar required
The comparison price including VAT
comparisonPriceExVat ● Decimal! non-null scalar required
The comparison price excluding VAT
lowestPriceIncVat ● Decimal! non-null scalar required
The lowest price including VAT
lowestPriceExVat ● Decimal! non-null scalar required
The lowest price excluding VAT
discountIncVat ● Decimal! non-null scalar required
Discount amount including VAT.
discountExVat ● Decimal! non-null scalar required
Discount amount excluding VAT.
discountPercentage ● Int! non-null scalar required
Discount percentage.
vat ● Decimal! non-null scalar required
VAT amount
isDiscounted ● Boolean! non-null scalar required
Whether the price is discounted or not
sellingPriceIncVatFormatted ● String scalar
Selling price (incl. VAT), formatted with currency info. e.g. '299 kr', '123,45 SEK', '$12.34'
sellingPriceExVatFormatted ● String scalar
Selling price (excl. VAT), formatted with currency info. e.g. '299 kr', '123,45 SEK', '$12.34'
comparisonPriceIncVatFormatted ● String scalar
Comparison price (incl. VAT), formatted with currency info. e.g. '299 kr', '123,45 SEK', '$12.34'
comparisonPriceExVatFormatted ● String scalar
Comparison price (excl. VAT), formatted with currency info. e.g. '299 kr', '123,45 SEK', '$12.34'
lowestPriceIncVatFormatted ● String scalar
Lowest price (incl. VAT), formatted with currency info. e.g. '299 kr', '123,45 SEK', '$12.34'
lowestPriceExVatFormatted ● String scalar
Lowest price (excl. VAT), formatted with currency info. e.g. '299 kr', '123,45 SEK', '$12.34'
discountIncVatFormatted ● String scalar
Discount (incl. VAT), formatted with currency info. e.g. '299 kr', '123,45 SEK', '$12.34'
discountExVatFormatted ● String scalar
Discount (excl. VAT), formatted with currency info. e.g. '299 kr', '123,45 SEK', '$12.34'
vatFormatted ● String scalar
VAT amount, formatted with currency info. e.g. '299 kr', '123,45 SEK', '$12.34'
Member Of
ProductType object