INPUT_OBJECT

IntFilterInput

Int field options

link GraphQL Schema definition

  • input IntFilterInput {
  • # test for equals
  • eq: Int
  • # test for in
  • in: [Int!]
  • # test for not in
  • nin: [Int!]
  • # test for less than
  • lt: [Int!]
  • # test for less than or equals
  • lte: Int
  • # test for greater than
  • gt: Int
  • # test for geater than or equals
  • gte: Int
  • }