Open
Description
Currently the sql
query helpers have a very generic docstring and a very complex and confusing type signature:
This makes using the helpers fairly confusing and error prone (at least for me). In particular, it makes it hard to know what a helper does when reading existing code.
Is there a possibilty to split the different query helpers into different function overloads so that they can each have their own type and docstring?
Or maybe it would be possible to do something like what slonik does and have the helpers be separate functions under sql
(https://github.com/gajus/slonik#user-content-slonik-query-building).