Trying to branch based on a null check in Studio. The ASSIGN works fine, but the IF action always hits the else block even when the variable has data. Here is the snippet:
ASSIGN _tempVar = ${session.contact.customData.id} IF ${_tempVar} IS NOT NULL THEN goto:process ELSE goto:skip
Debug logs show _tempVar contains the ID, yet the flow skips to ‘skip’. Am I missing a strict equality check or is this a Studio bug?