IsNull
Alias:IsNull
Output:Boolean
Checks if a step returns null
Parameter | Type | Required | Position | Summary |
---|---|---|---|---|
Value | T | ✔ | 1 | The 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