Reactjs – Why does useLazyLoadQuery() appear to be like blocking and can cause a re-render?
I am following the tutorial of Relay and it is Step 3, as on https://relay.dev/docs/tutorial/queries-1/. The code with my debugging, is export default function Newsfeed() { console.log("HERE 0") const data = useLazyLoadQuery( NewsfeedQuery, {} ) console.log("HERE 1", JSON.stringify(data)); and in…