StringFilterCondition
Defines possible string based filters for object field values.
Input Fields
any_of (
[String!])
Filters the list to only the entries with any of the given values.
contains (
String)
The string field contains the supplied value.
contains_all (
[String!])
The string field contains all of the supplied values.
empty (
Boolean)
Use true if the string field should be empty, or false if it should not be empty.
ends_with (
String)
The string field ends with the supplied value.
equals (
String)
The string field equals the provided String.
not_contains (
String)
The string field does not contain the supplied value.
not_equals (
String)
The string field does not equal the provided String.
starts_with (
String)
The string field starts with the supplied value.