Jack Clackett

Results 124 comments of Jack Clackett

You'd have to make another component that uses the second hook. The first component would look something like this.. ``` function ComponentWithFirstHook() { const {data, loading, error} = useQuery(QUERY) if...

Even in production the query causes my component to re-render 4 times, which is two more than expected right? @apollo/react-hooks doesn't have this issue, but i'm having other issues that...

@twelve17 @apollo/react-hooks works for me now, so have been using that in all my projects

Should be using the official Apollo react hooks by now man!

I have the same issue, only when navigating between pages after a mutation. My use case is: - List of items + link to a "/new-item" page with form -...

setting errorPolicy to "ignore" is another hack that seems to work for me?

Having kind of similar issues when using moduleResolution: "Bundler", It can't find the types for this library, to fix I had to patch the package like so: ```patch diff --git...

Ahh, turns out that I had multiple versions installed, and it was using 1.10.0! 1.14.0 is working as expected, my bad!