Studio Service

StringFilter

StringFilter

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

FieldTypeDescription
isNullBooleanIs null (if `true` is specified) or is not null (if `false` is specified).
equalToStringEqual to the specified value.
notEqualToStringNot equal to the specified value.
distinctFromStringNot equal to the specified value, treating null like an ordinary value.
notDistinctFromStringEqual to the specified value, treating null like an ordinary value.
in[String!]Included in the specified list.
notIn[String!]Not included in the specified list.
lessThanStringLess than the specified value.
lessThanOrEqualToStringLess than or equal to the specified value.
greaterThanStringGreater than the specified value.
greaterThanOrEqualToStringGreater than or equal to the specified value.