INPUT_OBJECT

UserPasswordWhereArgs

link GraphQL Schema definition

  • input UserPasswordWhereArgs {
  • # Equal to. This takes a higher precedence than the other operators.
  • eq: Secret
  • # Not equal to.
  • ne: Secret
  • # Greater than.
  • gt: Secret
  • # Greater than or equal to.
  • gte: Secret
  • # Less than.
  • lt: Secret
  • # Less than or equal to.
  • lte: Secret
  • # A two element tuple describing a range of values.
  • between: [Secret]
  • # A two element tuple describing an excluded range of values.
  • notBetween: [Secret]
  • # A list of values to include.
  • in: [Secret]
  • # A list of values to exclude.
  • notIn: [Secret]
  • # A pattern to match for likeness.
  • like: String
  • # A pattern to match for likeness and exclude.
  • notLike: String
  • # Filters for null values. This takes precedence after 'eq' but before all other
  • # fields
  • isNull: Boolean
  • }