INPUT_OBJECT

RefinementInput

link GraphQL Schema definition

  • input RefinementInput {
  • # attribute name to filter by
  • name: String!
  • # Enter either a single filter value (eg; y, true, for a boolean filter)...
  • value: String
  • # ... Or a list of them. (The list may contain one value.)
  • #
  • # Only value or values may be added, not both. (values would be ignored.)
  • values: [String!]
  • upper: Int
  • lower: Int
  • # true to invert the logic of the filter. E.g. Filter out results based on an
  • # attribute name
  • inverted: Boolean
  • }