INPUT_OBJECT

IntFilter

Filter conditions for filtering associated property of the type Int!.

link GraphQL Schema definition

  • input IntFilter {
  • # Specifies the exact value to match.
  • equalTo: Int
  • # Matches values greater than the specified value.
  • greaterThan: Int
  • # Matches values greater than or equal to the specified value.
  • greaterThanOrEqualTo: Int
  • # Specifies a list of exact values to match.
  • in: [Int!]
  • # Matches values less than the specified value.
  • lessThan: Int
  • # Matches values less than or equal to the specified value.
  • lessThanOrEqualTo: Int
  • # Specifies the exact value NOT to match.
  • notEqualTo: Int
  • # Specifies a list of exact values NOT to match.
  • notIn: [Int!]
  • }