not sure if this is the right place, but the EQL cljdocs site is broken atm
thanks, reporting here works, there is also #eql
https://clojurians.slack.com/archives/C8V0BQ0M6/p1603575742106400
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}))