Tiago Almeida

Results 2 comments of Tiago Almeida

When I migrate to Apollo 3.0 I had to use onCompleted: ```js MyComponent() { const [executeQuery, { data, error }] = useMutation(MUTATION, { onCompleted: () => { // I run...

> I managed to work around the problem with my own mutation wrapper > > ```js > export function useGraphqlMutation({ query, callbacks, options = {} }) { > const [error,...