Email

Contains

  • Definition: Checks if the email address contains a specific substring.

  • Use Case: Useful for partial matches, such as filtering by domain or specific patterns.

NotContains

  • Definition: Checks if the email address does not contain a specific substring.

  • Use Case: Excludes email addresses with certain substrings.

EndsWith

  • Definition: Checks if the email address ends with a specific substring.

  • Use Case: Useful for filtering by domain or top-level domain (TLD).


StartsWith

  • Definition: Checks if the email address starts with a specific substring.

  • Use Case: Useful for filtering by specific prefixes or patterns.

Equals

NotEquals

EqualsOneOf ("In" Filter)

EqualsNoneOf ("NotIn" Filter)

IsEmpty

  • Definition: Checks if the email field is empty (i.e., no value is present).

  • Use Case: Useful for identifying users with missing or incomplete email data.

    • Example: Filter users who have not provided an email address.

      • email IsEmpty → Matches users with no email value.

IsNotEmpty

  • Definition: Checks if the email field is not empty (i.e., a value is present).

  • Use Case: Useful for ensuring that all users have an email address.

    • Example: Filter users who have provided an email address.

      • email IsNotEmpty → Matches users with an email value.