Fork me on GitHub
#pathom
<
2018-11-26
>
souenzzo20:11:11

How to query a thing with params in pathom? Example [{:app/todo [:todo/done?]}] ;; => {:app/todo [{:todo/done? true} {:todo/done? false}]} [{(:app/todo {:done? false}) [:todo/done?]}] ;; => {:app/todo [{:todo/done? false}]}

wilkerlucio21:11:31

you can pull the params from the ast

wilkerlucio21:11:36

(-> env :ast :params)