relay-nextjs icon indicating copy to clipboard operation
relay-nextjs copied to clipboard

⚡️ Relay integration for Next.js apps

Results 15 relay-nextjs issues
Sort by recently updated
recently updated
newest added

When replacing route with something using shallow option, it seems like relay-nextjs still lets relay refetch the data. I'm not sure if that's intended as as far as I know,...

https://reverecre.github.io/relay-nextjs/docs/configuration#configuring-_document Missing some tags that are needed in order to work with a custom _document. ```tsx return ( ); ```

Hey there, We noticed that `WiredComponent.getInitialProps` is sync on client and async on server. We would be interested in them being async on either or, since it's technically allowed in...

First of all, thank you for the library 🙏 For one of my component, I'm using the `useQueryLoader` + `usePreloadedQuery` hooks. Everything was working flawlessly until I updated from React...

I am trying to use `withRelay` on a page that need preloading of info (classic `/account/edit` where I want fields to be filled with user data upfront). So I started...

hi, thanks for the repository and docs. Also, I see some improvements to aggregate to the amazing job. I guess I will have a free time into the next days...

Setting **concurrentFeatures: true** in **next.config.js** breaks relay-nextjs because of the use of **getInitialProps** in **_document.tsx** see also https://github.com/vercel/next.js/issues/31675 Will relay-nextjs support the latest and coming versions of Next.js with concurrentFeatures...

**What problem does this feature proposal attempt to solve?** My pages are generated using several GraphQL queries. Some of them can be cached and reused. But `relay-nextjs` allows only one...

First of all thanks for this great package, super helpful ❤️ I'm trying to implement a redirect to login when my GraphQL server responds with a 401. One of the...

Hey all, Great work with this library! It's been helpful on my Relay + Next journey. I have a GraphQL server that is currently running on a [Serverless Function](https://vercel.com/docs/concepts/functions/serverless-functions), but...