honeysql

Discussion of https://github.com/seancorfield/honeysql :slightly_smiling_face:
athomasoriginal 2018-11-11T00:25:36.024100Z

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?