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
Select supports these 2 syntax:
qb.select('s.id, s.title, s.artist, s.genre')
and
qb.select(['s.id', 's.title', 's.artist', 's.genre'])
but I constantly find myself doing this:
qb.select('s.id', 's.title', 's.artist', 's.genre')
Can we also allow the vararg approach?
The text was updated successfully, but these errors were encountered:
I could add this option but it won't be for the official v2.0.0 release. I'll add it for v2.1.
Sorry, something went wrong.
No branches or pull requests
Select supports these 2 syntax:
and
but I constantly find myself doing this:
Can we also allow the vararg approach?
The text was updated successfully, but these errors were encountered: