Replies: 2 comments
-
@Akryum Think this is a good case to have some hooks that could handle this. Something more granular that the global wrapper i pred here https://github.com/Akryum/vue-apollo/pull/718/files |
Beta Was this translation helpful? Give feedback.
0 replies
-
If you are doing SSR, you should have a new Vue app and new Apollo clients created for each page request. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
If use apollo InMemoryCache, service created common data storage.
Example:
Page1 has apollo query1, page2 - query2.
Go to page1, page contains data query1
Go to page2, page contains data query1 and query2
This is my vue apollo ssr initialize
Is it possible to configure cache adapter for page namespace key?
Or is there some other solution?
Beta Was this translation helpful? Give feedback.
All reactions