pathom

:pathom: https://github.com/wilkerlucio/pathom/ & https://pathom3.wsscode.com & https://roamresearch.com/#/app/wsscode
lilactown 2020-10-24T19:26:58.183700Z

not sure if this is the right place, but the EQL cljdocs site is broken atm

wilkerlucio 2020-10-25T14:12:06.190400Z

fixed: https://cljdoc.org/d/edn-query-language/eql/1.0.1

wilkerlucio 2020-10-25T14:12:11.190700Z

thanks, reporting here works, there is also #eql

souenzzo 2020-10-24T21:42:57.183800Z

https://clojurians.slack.com/archives/C8V0BQ0M6/p1603575742106400

1
👀 1
dehli 2020-10-24T22:50:03.187700Z

Hi, I have a mutation that I’d like to take both ::pc/input and ::pc/params (where I’d like the ::pc/input the be an attribute that’s globally resolvable). I’ve tried to get this to work but the input isn’t resolving. Is this supported? Thanks!

(pc/defmutation send-login-email
  [{:keys [send-email]} {:app/keys [origin] :login/keys [email]}]
  {::pc/sym 'login/send-email
   ::pc/input #{:app/origin}
   ::pc/params [:login/email]
   ::pc/output [:login/sent]}
  (go
    (<! (send-email {:email email :origin origin}))
    {:login/sent true}))