ISNULL
Deprecated version
This document refers to a deprecated version of the RQL programming language.
Please go here for documentation related to the latest supported version.
ISNULL provides an alternative to an expression if its value is null.
Syntax
ISNULL(<expression>, <alternative>)
Example
ISNULL(NULL, 1) // 1
ISNULL(2, 1) // 2