all I want to do is send a query like
SELECT * FROM table WHERE col IN (110, 130, 90);
So I prepared the following statement
this works fine aswell (Javascript ES6):
let myList = [1, 2, 3]; `SELECT * FROM table WHERE col IN (${myList.join()});`