Does this package work with last version of relay?
The code in documentation won't work for me with the current version of relay
"react": "^17.0.1",
"react-relay": "^10.1.3",
"react-relay-network-modern": "^6.0.0",
"react-relay-network-modern-ssr": "^1.4.0",
The callback () => relayData[0][1] passed to Network.create is never called.
// Third, render the app a second time now that the Relay store has been primed
// and send HTML and bootstrap data to the client for rehydration.
const appHtml = ReactDOMServer.renderToString(
<App
relayEnvironment={new Environment({
network: Network.create(() => relayData[0][1]), //NEVER CALLED!
store,
})}
/>
);
here my code (ssr-break) branch .
I solved using fetchQuery from relay-runtime then renderToString once.
Does this package work with last version of relay?
The code in documentation won't work for me with the current version of relay
The callback
() => relayData[0][1]passed toNetwork.createis never called.here my code (ssr-break) branch .
I solved using
fetchQueryfromrelay-runtimethenrenderToStringonce.