INPUT_OBJECT

StringListFilter

A filter to be used against String List fields. All fields are combined with a logical ‘and.’

link GraphQL Schema definition

  • input StringListFilter {
  • # Is null (if `true` is specified) or is not null (if `false` is specified).
  • isNull: Boolean
  • # Equal to the specified value.
  • equalTo: [String]
  • # Not equal to the specified value.
  • notEqualTo: [String]
  • # Not equal to the specified value, treating null like an ordinary value.
  • distinctFrom: [String]
  • # Equal to the specified value, treating null like an ordinary value.
  • notDistinctFrom: [String]
  • # Less than the specified value.
  • lessThan: [String]
  • # Less than or equal to the specified value.
  • lessThanOrEqualTo: [String]
  • # Greater than the specified value.
  • greaterThan: [String]
  • # Greater than or equal to the specified value.
  • greaterThanOrEqualTo: [String]
  • # Contains the specified list of values.
  • contains: [String]
  • # Contained by the specified list of values.
  • containedBy: [String]
  • # Overlaps the specified list of values.
  • overlaps: [String]
  • # Any array item is equal to the specified value.
  • anyEqualTo: String
  • # Any array item is not equal to the specified value.
  • anyNotEqualTo: String
  • # Any array item is less than the specified value.
  • anyLessThan: String
  • # Any array item is less than or equal to the specified value.
  • anyLessThanOrEqualTo: String
  • # Any array item is greater than the specified value.
  • anyGreaterThan: String
  • # Any array item is greater than or equal to the specified value.
  • anyGreaterThanOrEqualTo: String
  • }