Ryan Williams

Results 18 comments of Ryan Williams

I went ahead and wrote up the following hook as a work-around that seems to do the trick: ``` import React, { useEffect, useState } from "react"; import { ApolloCache,...

@jpvajda Thanks :) This has been working for me. However, I feel that this should really be baked into the ApolloClient as standard functionality; preferably as part of the existing...

Update: One of the updates between my solution and the present version has broken the above so that it no longer serves to fix the problem... So this is a...

Need this fixed. I'm trying to upgrade to react-router v6. In one of my components I would like to immediately update the url params for the page in certain cases...

I would like to see SAML support, please and thank you!

+1 Seeing this with tslib@npm:2.5.0 (via the @ant-design/charts package)

From a usability perspective, there are two big draw-backs for me right now. First is the lack of official support for complex objects as inputs and outputs of an api...

> @rwilliams3088 can you clarify what you mean by "lack of official support for complex objects? What's an example of that? For example: a Date object. I use a number...

Another, smaller request for efficiency: drop uneccessary state like `result` and `lastPromiseInfo` from the `useLazyQuery` hook. Since `trigger` returns a promise with all the request and response details, and since...

> @rwilliams3088 Generally, if you're redoing a lazy query, you want to have a re-render to get the new query data from the hook. I don't really see the problem...