Cheat Sheets/Power Automate/equals
Power Automate (WDL) function

equalsPower Automate (WDL) function reference

Test equality.

Syntax

wdl
equals(object1, object2)

Examples

wdl
equals(item()?['Status'], 'Open')
true / false

An explicit null check.

wdl
equals(item()?['Status'], null)
true / false
wdl
equals(length(triggerBody()?['Items']), 0)
true when the array is empty

Common mistakes & gotchas

Related Workflow Definition Language functions

From Logic & comparison

Used in these tutorials

← Back to the Power Automate (WDL) cheat sheet