Skip to main content
Version: Next

Filter List Smaller

Return an object list whose specified property value is smaller than the provided value.

Description

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

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

Inputs

  • Object list (List): The list to filter.
  • Property (Property): The property to filter on.
  • Value (Object): The threshold value to compare to.
  • Strict (Boolean): Whether the inequality must be strict or not.

Outputs

  • Filtered list (List): The resulting list.