Copying this from @homerjam https://github.com/nuxt-community/apollo-module/issues/210
But am experiencing on a project. We are moving from a custom built SSR to nuxt and we are unable to get the state of our apollo queries before the component renders.
In our beforeNuxtRender the value of the cache.extract() is an empty object.
beforeNuxtRender(({
nuxtState
}) => {
nuxtState.apollo = ApolloSSR.getStates(apolloProvider);
});
}

I'm finding this within the computed property, which ends up throwing a nuxt error (blanking the entire page)
Can't reproduce:

@Akryum the issue refers to SSR - I'm not sure why but we no longer seem to get the server side console.log in CodeSandbox. Previously it read:
server: true allCars: undefined
Possibly you only get it in editor mode??
Well, when the component instance is created on the server, the data isn't available in the created hook because the apollo query needs to be completed and it takes time.
Does that mean vue-apollo officially doesn't support SSR - eg. Nuxt universal?