You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a client makes a request invoking the same mutation multiple times, Pathom only returns the last response.
Example:
(pco/defmutationadd-node [{:keys [id]}]
(println"do" id) ; so you can see that both invocations happen
{:id id})
(defenv
(pci/register
[add-node]))
(comment
(p.eql/process (assoc env :counter (atom0))
{:file/path"src/demos"}
`[(add-node {:id"a"}) (add-node {:id"b"})]))
Problem
As a result, the user cannot know what happens to any call but the last one. The responses become unreachable.
Problem Analysis
Description
When a client makes a request invoking the same mutation multiple times, Pathom only returns the last response.
Example:
Problem
As a result, the user cannot know what happens to any call but the last one. The responses become unreachable.
The Solution Space
https://docs.google.com/spreadsheets/d/1M7DZyPJHjyWFVdAVv9JRJcRwEnHPRgRvcjxGZSFB6UE/edit#gid=0
The text was updated successfully, but these errors were encountered: