PriceLogItemType
Type containing all information about a product price log item
type PriceLogItemType {
sellingPriceIncVat: Decimal!
sellingPriceExVat: Decimal!
regularPriceIncVat: Decimal!
regularPriceExVat: Decimal!
discountIncVat: Decimal!
discountExVat: Decimal!
discountPercentage: Int!
vat: Decimal!
isDiscounted: Boolean!
isLowest: Boolean!
date: String!
sellingPriceIncVatFormatted: String
sellingPriceExVatFormatted: String
regularPriceIncVatFormatted: String
regularPriceExVatFormatted: 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
regularPriceIncVat ● Decimal! non-null scalar required
The regular price including VAT
regularPriceExVat ● Decimal! non-null scalar required
The regular 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
isLowest ● Boolean! non-null scalar required
True if this log items has the lowest price for the last 30 days
date ● String! non-null scalar required
Date of the price change
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'
regularPriceIncVatFormatted ● String scalar
Regular price (incl. VAT), formatted with currency info. e.g. '299 kr', '123,45 SEK', '$12.34'
regularPriceExVatFormatted ● String scalar
Regular 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