You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I currently have two very similar sql queries, different in only their return type. (one returns a tuple and has a limit, while the other returns count(*) with no limit)
to factour out the similarities by passing in an f :: ... -> SqlQuery a function which determines the return type of the query. However to give a type to this I have to use SqlSelect, which is in an internal module.
Would it be possible to somehow expose it for this purpose, or should I just use the Internal module in this case? (or is there some other solution that I just missed)
The text was updated successfully, but these errors were encountered:
I currently have two very similar sql queries, different in only their return type. (one returns a tuple and has a
limit
, while the other returnscount(*)
with nolimit
)I would like to create a function
to factour out the similarities by passing in an
f :: ... -> SqlQuery a
function which determines the return type of the query. However to give a type to this I have to useSqlSelect
, which is in an internal module.Would it be possible to somehow expose it for this purpose, or should I just use the
Internal
module in this case? (or is there some other solution that I just missed)The text was updated successfully, but these errors were encountered: