import { sql } from "./database.js";
const query = sql`SELECT * FROM users WHERE id = ${1}`
console.log(await query.describe())
console.log(await query.execute())
await sql.end()
Hi,
I expected this to show the describe and then the results but it shows the describe twice. Is this intended behaviour and is there a way to do what I want?