OBJECT

PriceRange

A price range

link GraphQL Schema definition

  • type PriceRange {
  • # Maximum value in the range.
  • max: Float!
  • # Maximum value in the range, as cents for accuracy.
  • maxCents: Int!
  • # Maximum value in the range, formatted in the given currency.
  • maxFormatted: String!
  • # Maximum value in the range in session currency.
  • maxInSessionCurrency: String!
  • # Minimum value in the range.
  • min: Float!
  • # Minimum value in the range, as cents for accuracy.
  • minCents: Int!
  • # Minimum value in the range, formatted in the given currency.
  • minFormatted: String!
  • # Minimum value in the range in session currency.
  • minInSessionCurrency: String!
  • }