Hello, It is possible to pass an array as parameter? The query bellow returns the error: `Error: Operand should contain 1 column(s)`. ```typescript const ids = [1, 2, 3]; return client.query('SELECT * FROM mytable WHERE id in (?)', [ids]); ```