StringFilter
Last edit: Oct 26, 2022
No description
type StringFilter {
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
contains
(String
)
matches string within other string
ends_with
(String
)
exact
(String
)
deprecated, use "value" instead