INPUT_OBJECT

String_comparison_exp

Boolean expression to compare columns of type "String". All fields are combined with logical 'AND'.

link GraphQL Schema definition

  • input String_comparison_exp {
  • _eq: String
  • _gt: String
  • _gte: String
  • # does the column match the given case-insensitive pattern
  • _ilike: String
  • _in: [String!]
  • # does the column match the given POSIX regular expression, case insensitive
  • _iregex: String
  • _is_null: Boolean
  • # does the column match the given pattern
  • _like: String
  • _lt: String
  • _lte: String
  • _neq: String
  • # does the column NOT match the given case-insensitive pattern
  • _nilike: String
  • _nin: [String!]
  • # does the column NOT match the given POSIX regular expression, case insensitive
  • _niregex: String
  • # does the column NOT match the given pattern
  • _nlike: String
  • # does the column NOT match the given POSIX regular expression, case sensitive
  • _nregex: String
  • # does the column NOT match the given SQL regular expression
  • _nsimilar: String
  • # does the column match the given POSIX regular expression, case sensitive
  • _regex: String
  • # does the column match the given SQL regular expression
  • _similar: String
  • }