is there any magic way to extract a value from the map returned by eql if there is only one kv?
(-> (p.eql/process env {:db/id 1} [:name]) :name)
this way seems horribly suboptimal(let [{:keys [name]} (p.eql/process env {:db/id 1} [:name])]
name)
when pulling one thing out, creating a smartmap seems even worse