Skip to main content
Filters string fields for values that end with a specified substring. Returns rows where the field value ends with the specified suffix. Can be used with case_insensitive to perform case-insensitive matching.

Syntax

Properties

string_field
string
required
The string field to filter on, specified in the format view_name.field_name.
ends_with
string
required
The suffix string to match. Returns rows where the field value ends with this substring.
case_insensitive
boolean
default:"false"
When set to true, performs case-insensitive matching. Defaults to false (case-sensitive) if omitted.

Examples

Matches: blobby@blobsrus.com, blob.ross@blobsrus.com, etc.
Matches: Everything but @gmail.com emails
Matches: blobsrus.com, BlobRoss.com, etc.