Hello,
I'm struggling with a function.
I have 2 payloads. Let's name them msg.payload.1 and msg.payload.2.
Now the function:
if (msg.payload.1==true && msg.payload.2==true){
msg.payload=false;
}else{
msg.payload=true;
}
return msg;
I cannot compare 2 undepended nodes without storing at least one of them inside context, right?
Or is there a way to do this?