How to add comma separated values from text component to query's "IN"

Hey @ckissi! Your current code for that split operation is going to output an array, which isn’t going to work here - you’ll need to use the ANY keyword:

OR orders.id = ANY({{ order_ids.value.split(',').map(i => parseInt(i)) }})
1 Like