I am trying to build a values list
in Honeysql https://www.postgresql.org/docs/current/queries-values.html but I have hit a wall at this point.
{:select [:*]
:from [{:values [{:parent_child_edges 1}]}]}
Any ideas?
RE: Solution
I found that this worked:
{:select [:*]
:from [[{:values [[1] [2]]}
(hsql/call :vals :id)]]}
Does anyone know if there is an alternative to using hsql/call
?