Alokai

PriceRange

Contains the price range for a product. If the product has a single price, the minimum and maximum price will be the same.

type PriceRange = {
  __typename?: 'PriceRange'; /** The highest possible price for the product. */
  maximum_price?: Maybe<ProductPrice>; /** The lowest possible price for the product. */
  minimum_price: ProductPrice;
};

Referenced Types

On this page