INPUT_OBJECT

NullableStringFilter

Filter conditions for filtering associated property of the type String.

link GraphQL Schema definition

  • input NullableStringFilter {
  • # Specifies the suffix of the value to match.
  • endsWith: String
  • # Specifies the exact value to match.
  • equalTo: String
  • # Specifies a list of exact values to match.
  • in: [String!]
  • # Matches `null` value if `true` is specified. Matches not `null` values if
  • # `false` is specified. Matches everything if nothing is specified.
  • isNull: Boolean
  • # Specifies the value length to match.
  • length: StringLengthFilter
  • # Specifies the similar string to the value to match.
  • like: String
  • # Specifies the exact value NOT to match.
  • notEqualTo: String
  • # Specifies a list of exact values NOT to match.
  • notIn: [String!]
  • # Specifies the prefix of the value to match.
  • startsWith: String
  • }