We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The NPM library postgres has a really nice feature to do string template expansions, can read about it here: https://github.com/porsager/postgres
postgres
For example:
const users = await sql` select * from users where age in (${ [68, 75, 23] }) `
In theory, pgtyped, should be able to do something just like this too, and it would help with general ease of development.
The text was updated successfully, but these errors were encountered:
Unfortunately, this would make PG type inference impossible. Related #233
Sorry, something went wrong.
No branches or pull requests
The NPM library
postgres
has a really nice feature to do string template expansions, can read about it here:https://github.com/porsager/postgres
For example:
In theory, pgtyped, should be able to do something just like this too, and it would help with general ease of development.
The text was updated successfully, but these errors were encountered: