DEV Community

Discussion on: How to output raw SQL with filled parameters in TypeORM?

Collapse
 
charliemday profile image
charliemday

Nice! This almost worked out-of-the-box for me for TypeORM PSQL printing but had some issues where ? should have been $ and PSQL takes single quotes instead of double quotes for values - have made minor updates to the code in this available gist here: gist.github.com/charliemday/b0668f...

Thanks!