Skip to content

Latest commit

 

History

History
41 lines (23 loc) · 1.08 KB

File metadata and controls

41 lines (23 loc) · 1.08 KB

Any transform action

Use case

You are reviewing a list of users and you need to determine if any of the users are enabled. The previous list has been mapped using the map transform action to the attribute enabled , providing a list of boolean True/False values to check against.

Overview

This transform action will look at a list of boolean values and return true if any of the elements are true.


Parameters

ParameterDescriptionRequired
ListList of boolean values to check against.true

Usage

Example 1: Confirm Any Items In List Are True

List to Check (input):

{{ [true, false, true, true] }}

Results Output

This transform will output a boolean value.

Example output from Example 1:

True