OBJECT
Range
A price range. Used within SuggestedRefinement
link GraphQL Schema definition
- type Range {
- # lower bound of range in pence
- : Int
- # Display representation of the lower bound value. E.g. with currency symbol
- : String
- # upper bound of range in pence
- : Int
- # Display representation of the upper bound value. E.g. with currency symbol
- : 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"
- : String!
- # Number of items within this range
- : Int!
- }