DescriptionReturns null if the first argument equals the second argument, otherwise returns the first argumentAvailable InAppsAutomationsAnalysisSyntaxNULLIF(a: T, b: T) => TExampleNULLIF("a", "a") = nullnullif("a","b") = "a"