Jesse Niininen
Jesse Niininen
Also for some reason `cypress/run` wants to run `npm ci` again even though node_modules is saved to workspace. I think there's a lot of room for optimization here. I already...
That's not true, `getInitiaProps` is still used because it's superior to the alternatives. More detailed issues of `getServerSideProps` here: https://github.com/RevereCRE/relay-nextjs/issues/61#issuecomment-1110674697 I've personally hacked `next-i18next` to work with `getInitialProps`, but only...
I've created a PR which allows to access query data and do redirects and set status codes based on that during SSR: #74 I think it'd be possible to modify...
Our query vars do actually change, so I don't think it will fit my usecase. We're changing the query vars so that SSR works correctly when you refresh the page....
We're using `usePaginationFragment` and we can use that to fetch only the data we need after filters have changed. But the problem is that when the user changes filter, we...
Yes that's what we do, but the source of those variables are the url and changing the url will make relay-nextjs refetch the data. > That works for us and...
> Yep! Are you wrapping the component containing usePaginationFragment with a suspense boundary? Yes, but we have `useRouter` hook inside `_app` which might be a problem if re-render is what...
Ok here's the repro: https://github.com/FINDarkside/relay-nextjs-issue-73-repro Setup is what you'd expect, `npm i && npm run dev`. As can be seen from the network tab, when you click the button 2...
Yes, but that's what I've been trying to explain and that's what this whole issue is about. You also told me to use `refetchableFragment` so now I'm quite confused. 🤔...
> There may be a way to have Relay only fetch the refetchable fragment, but I'm not sure. No I don't think there is, it's refetching the whole query on...