Can I see generated raw sql query that is generated from drizzle-orm query?

Trying to sanity check my query, would be nice to see the query sent in. For example, if I send in:
db.update(table).set({ some: 'obj'}).where(eq(table.field, 'newval'));
would equate to:
UPDATE table SET some = 'obj' WHERE field = 'newval';
Was this page helpful?