Closed dehli closed 2 months ago
Hi @dehli ! I'm doing well, how about you? Sorry for the long due here, just got to it. The issue that the inputs for :email/valid?
ends up in a different part of the graph than the direct request to :email/body
:
I notice this graph is optimizable (the first end part is a subset of the second, so this could be merged).
But for now, and to make the params part for resilient, I'm doing a post-process on the graph to ensure all equal resolvers have the same params, so we can avoid the issue of different params on different parts completely.
Hey @wilkerlucio, no need to apologize! Happy to hear you're doing well! Doing good over here too! That makes a lot of sense. I appreciate the fix! Will get latest pulled down. Have a good week!
Hey @wilkerlucio 👋 Hope you're doing well!
I've been away from pathom for a little bit but I'm revisiting it again and I ran into a bug around
pco/params
, ClojureScript, and the parallel parser. Below is a minimal reproducible example (full example is located here) showcasing what I'm seeing. It looks like when:email/body
is passed into theemail-valid?
resolver it is "resetting" the params. Will follow up here if I make any progress on it!