Skip to main content
Version: v0.19.0-alpha 🚧

IsNull

Alias:IsNull

Output:Boolean

Checks if a step returns null

ParameterTypeRequiredPositionSummary
ValueT✔1The value to check for null

Examples​

Example 1​

SCL​

IsNull Null

Expected Output​

True

Example 2​

SCL​

IsNull 1

Expected Output​

False

Example 3​

SCL​

IsNull (a: Null)['a']

Expected Output​

True

Example 4​

SCL​

IsNull (a: 1)['a']

Expected Output​

False