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)) }})
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)) }})