Unfortunately you can't achieve what is intended.For security purposes,
any string / variable used in a query is automatically escaped.You can't
use a single input string and use that in an "in" statement. What you
could try is:bring in the comma separated valuesThen use a condition
like ',' + ($(vars/@ids)) + ',' LIKE '%@name%'Though note that this
won't be able to use any DB index, so shouldd be used with care