OBJECT

Range

A price range. Used within SuggestedRefinement

link GraphQL Schema definition

  • type Range {
  • # lower bound of range in pence
  • lower: Int
  • # Display representation of the lower bound value. E.g. with currency symbol
  • lower_display: String
  • # upper bound of range in pence
  • upper: Int
  • # Display representation of the upper bound value. E.g. with currency symbol
  • upper_display: String
  • # Shows a display of either one of the price bounds or both.
  • # If the price is at it's boundry it won't be shown. E.g. upper ==
  • # Integer.MAX_VALUE or lower == Integer.MIN_VALUE;
  • # E.g. "under £10", "£10-£15", "£20 and over"
  • display: String!
  • # Number of items within this range
  • count: Int!
  • }