INPUT_OBJECT

RoleNameSubscriptionFilters

link GraphQL Schema definition

  • input RoleNameSubscriptionFilters {
  • # Equal to. This takes a higher precedence than the other operators.
  • eq: String
  • # Greater than.
  • gt: String
  • # Greater than or equal to.
  • gte: String
  • # Less than.
  • lt: String
  • # Less than or equal to.
  • lte: String
  • # Not equal to.
  • ne: String
  • # A two element tuple describing a range of values.
  • between: [String]
  • # A two element tuple describing an excluded range of values.
  • notBetween: [String]
  • # A list of values to include.
  • in: [String]
  • # A list of values to exclude.
  • notIn: [String]
  • # A pattern to match for likeness.
  • like: String
  • # A pattern to match for likeness and exclude.
  • notLike: String
  • # A regular expression to match on. Note that unlike 'like' this uses regular
  • # expression syntax instead of SQL like syntax.
  • matches: String
  • # A regular expression to reject on. Note that unlike 'like' this uses regular
  • # expression syntax instead of SQL like syntax.
  • notMatches: String
  • # Filters for null values. This takes precedence after 'eq' but before all other
  • # fields
  • isNull: Boolean
  • }