Calling instance variable in Query’s ‘Is included in’ operator
Hello everyone,
In Query I have to fetch @3583986 is included in '111','222','333','444'
In my workflow the above (dynamic) values are stored in an instance variable in JavaScript before the Query.
instance.vars.dynamicVariable = "'111','222','333','444'";
In Query, I have to call this instance variable, So I have used the syntax $(instance/vars/@dynamicVariable)
@3583986 is included in $(instance/vars/@dynamicVariable)
But this $(instance/vars/@dynamicVariable) is getting converted to string (though I have opened editor and removed ‘ ‘ and saved the workflow again, still the expression is getting converted to string)


The same is working when I change the operator to ‘Equals to’ and the value can be read as ‘Value of parameter instance variable’. But my objective is to use ‘is included in’ operator and to make use of previous created instance variable.

Kindly help in fixing this. Either by making modification in instance variable or in Query!
