Eugen Guriev
Eugen Guriev
@enaqx Something is wrong with Travis CI tests. I've added only one GitHub link but it's failing. :-(
> At a superficial level, async `read` functions are not possible because the `cache.read{Query,Fragment}` methods are synchronous, so everything involved in reading a query from the cache must also be...

Should I do it manualy? Right? Like this: ```js if (!storage.var) { storage.var = makeVar(null); get(`performer/performers?${urlQuery}`) .then( res => res.map( el => ({ ...el, id: el.performerId, __typename: 'performers' }) )...
@benjamn And how I can set the `loading` state to true in this case? It's false always for me.
Nevermind. I figured out. Instead of `makeVar(null)` u should use `makeVar(undefined)`. Here is an example of **asyncRead** function ```js import { makeVar } from '@apollo/client' export const asyncRead = (fn,...
> @gcofficial I have an async problem with a query field and I'm wondering if your asyncRead could help. > > Would be awesome if you could tell me how...
and one more question if you don't mind... How to import types? Like: ```typescript { from: "h3", imports: ["H3Event", "EventHandlerRequest"], }, ```
I got the same after the update for some reason. :(
I have the same with navigation back. It was not in 3.6.0, but it was in some versions before that. So we're reintroduced it again :)