Skip to main content
Version: Next

Filter List Equals

Filter on a specific property being equal to the specified value.

Description

This function filters out a list by comparing a specific object's property to a given value. It generates a new list that contains only the objects whose property is equal to the filtering value.

The following property types are supported: string, number, boolean, and datetime.

Example: All the customers who are not married.

Inputs

  • Object list (List): The list to filter.
  • Property (Property): The property to test.
  • Filter (Object): The value to compare with.
  • Not (Boolean): If true, acts as Filter List Different.

Outputs

  • Filtered list (List): The resulting filtered list.