I have two Entity types (@name and @ surname) . If the customer can enter these two parameters I will send the flow to another page. is it possible can I do this with conditional response?
I wrote a simple code like below but It does not work. I get "true" as output even if I don't enter my surname
if ($session.params.name! = " ") OR ($session.params.surname != " ")
'true'
else
'false'
endif
Thank you.