How to integrate Apollo Client into Solid Start with SSR?
I got Apollo working fine with my own custom functions/provider (solid-apollo hasn't been touched in 3 years and the author has made no attempt to fix anything, and I don't believe it supported reactivity in the variables anyways, so variables needs to be a function call in createQuery), but I'm having trouble getting it to properly work with SSR. The client on the server doesn't talk to the client on the browser and I was trying to go through the server rendering docs https://www.apollographql.com/docs/react/performance/server-side-rendering but you cannot use some of this code as it's React specific (getDataFromTree for example), so does anyone know how to actually integrate the two? I stashed all the changes that I was trying to do, so this is pre any of that.