INPUT_OBJECT

StringFilter

Filter conditions for filtering associated property of the type String!.

link GraphQL Schema definition

  • input StringFilter {
  • # 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!]
  • # 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
  • }