StringFilter
Last edit: Dec 17, 2025
No description
type StringFilter {
case_sensitive: Boolean
contains: String
ends_with: String
exact: String
not_contains: String
not_ends_with: String
not_starts_with: String
not_value: String
not_value_in: [String!]
starts_with: String
value: String
value_in: [String!]
}
Fields
case_sensitive (Boolean)
if argument is true, contains, starts_with and ends_with will be case sensitive
contains (String)
matches string within other string
ends_with (String)
exact (String)
deprecated, use "value" instead