l-you

Results 49 comments of l-you

`forceOptimisticNavigation` helps to do a workaround for it. But seems like this option can disappear soon https://github.com/vercel/next.js/pull/47905 Edit: only in `dev` mode.

@edarioq after deployment it turned out that `forceOptimisticNavigation` didn't work on production, only in development In my case, the issue was caused by unicode characters in my query parameters, which...

I've spend some time on investigation considering some ideas. As I see something like https://github.com/thecodingmachine/graphqlite/issues/562#issuecomment-1451121402 is rejected because of https://github.com/webonyx/graphql-php/issues/1329 ? It's hard currently to see the complete picture. "runtime"...

> every single piece of code must think through it's own way of caching & invalidating cache, which isn't as easy as it might sound. Those code pieces does not...

@oprypkhantc You mentioned somewhere that your company is migrating 1.4k endpoints to graphql. Would you share some performance insights of your graphql after that migration? I suppose you have some...

> As a quick test I tried to throw the schema into a PSR16 cache, but of course that's not possible with closures. I did find this library to support...

@oojacoboo Personally, I don't use `[HideIfUnauthorized]`. Introspection is only exposed to front-end through token. Going back to serialization problem. I have made some confusion mixing up `contextValue` and `rootValue` meanings...

> For supporting multiple schemas, I was thinking we could add an additional argument, `schema`, to the following annotations: > > * `[Query]` > * `[Mutation]` > * `[Type]` >...

> > ``` > > $typeMapper = $context['schemaFactory']->getRecursiveTypeMapper(); > > ``` > > So, the recursiveTypeMapper would then be responsible for determining the cached status? That means we'd have a...

> I think it's worth giving it a shot - seems doable without too much complexity. You want to put together a PR on this? Sure! I will have time...