// Remember that `query` is a `string` type// and `params` is `unknown[]` typeconst queryChunks: SQLChunk[] = [];queryChunks.push(sql.raw(query));for (const param of params) { queryChunks.push(sql.param(param));}const output = await this.database.execute<{ id: bigint; }>(new SQL(queryChunks)));