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
constMutationWrapper=({ children, ...props})=><Mutation{...props}>{(mutate,result)=>children({ mutate, result })}</Mutation>const{ mutate, result }=yield<MutationWrapper/>
when you want to access all arguments (and it's always the case with Mutation) negotiates the main benefit of epitath (at least for me) - conciseness.
I tried to read the code and understand if it is possible to return all the arg by default, but unfortunately I failed to do this quickly, so I decided to open this thread.