hey! quick question — is the “call with variables” in workflows working properly?
i’m passing a variable (like unit_status) when starting the call. right after the first node, i added a node with two edges that check the variable like this:
{{ unit_status == "handed-over" }}
{{ unit_status == "off-plan" }}
but it’s not routing correctly. even when i pass the variable as “handed-over”, it always goes the wrong way (usually off-plan path). i even tried making the node empty or with a prompt, but same issue.
just want to check the value of unit_status from the input and go down the right path. am i missing something? is this the right way to check passed variables in edge conditions?