Skip to main content

includes

Check if a list includes a value

Written by Holly Conrad Smith

Use this when you want to check if a list contains a specific value within a flow, for example confirming a usage type or property is present in a set.

Inputs

Name

Abbreviation

Type

Access

Description

List

L

Any

List

The list to check

Value

V

Any

Item

The value to check for

Outputs

Name

Abbreviation

Type

Access

Description

Result

R

Boolean

Item

Whether the list includes the value

How to

  1. Feed in a list

  2. Feed in a value to find

    This value is an item to be found - ie an object

  3. The result is a true/false boolean.

    It will be True if the item is found in the list, and false if the item is not found in the list

Did this answer your question?