https://codesandbox.io/s/codesandboxnuxt-kdgpg?fontsize=14
clean install - implement @nuxtjs/apollo as described

apollo to be implemented
TypeError
Cannot read property 'freezeResults' of null
For now, I'm not pretty sure what happen. freezeResults in apollo-cache-inmemory supposed to be set by default.
The current solution, you can manual set freezeResults like this.
apollo: {
clientConfigs: {
default: {
httpEndpoint:
"https://api.graph.cool/simple/v1/cj1dqiyvqqnmj0113yuqamkuu",
inMemoryCacheOptions: {
freezeResults: false
}
}
}
}
Fixed on new release version.
Most helpful comment
For now, I'm not pretty sure what happen.
freezeResultsinapollo-cache-inmemorysupposed to be set by default.The current solution, you can manual set
freezeResultslike this.