INPUT_OBJECT

FilterTypeInput

FilterTypeInput specifies which action will be performed in a query

link GraphQL Schema definition

  • input FilterTypeInput {
  • # Equals
  • eq: JSON
  • # Find in set. The value can contain a set of comma-separated values
  • finset: [String]
  • # From. Must be used with 'to'
  • from: String
  • # Greater than
  • gt: String
  • # Greater than or equal to
  • gte: String
  • # Greater than or equal to
  • gteq: String
  • # In. The value can contain a set of comma-separated values
  • in: [JSON]
  • # Like. The specified value can contain % (percent signs) to allow matching of 0
  • # or more characters
  • like: String
  • # Less than
  • lt: String
  • # Less than or equal to
  • lte: String
  • # Less than or equal to
  • lteq: String
  • # More than or equal to
  • moreq: String
  • # Not equal to
  • neq: JSON
  • # Not null
  • notnull: String
  • # Is null
  • null: String
  • # To. Must be used with 'from'
  • to: String
  • # Not in. The value can contain a set of comma-separated values
  • nin: [String]
  • # describe the filter scope (default | catalog)
  • scope: [String]
  • }