Avatar

Correct answer by
Community Advisor

Hi,

Communication between activities can only happen over text (/json serializations).

Instead of that code you could fork the transition ahead of the js activity, then invert the query to delete, i.e.:

sqlExec("delete from " + vars.tableName + " where sField1 <> '" + localVar + "'");

The outgoing transition will then have the desired result set.

Thanks,

-Jon

View solution in original post