我需要将我的 Apollo 客户端缓存设置为默认值

Posted

技术标签:

【中文标题】我需要将我的 Apollo 客户端缓存设置为默认值【英文标题】:I need to set my Apollo Client Cache to its defaults 【发布时间】:2019-02-24 15:22:49 【问题描述】:

我有一个使用 Apollo 客户端的 React 应用程序。我正在使用apollo-link-stateapollo-cache-persist 并且需要在我的应用程序中调用client.resetStore() 时将我的商店重置为其默认值。

文档说,在创建客户端时,您应该调用 client.onResetStore(stateLink.writeDefaults),这将完成这项工作,但 writeDefaults 由 Apollo Link State 公开,我无法直接访问,因为我正在使用 Apollo Boost。

这是我的 Apollo 客户端代码:

import ApolloClient from 'apollo-boost';
import  InMemoryCache  from 'apollo-cache-inmemory';
import  persistCache  from 'apollo-cache-persist';
import  defaults, resolvers  from "./store";

const cache = new InMemoryCache();

persistCache(
  storage: window.localStorage,
  debug: process.env.NODE_ENV !== 'production',
  cache
);

const client = new ApolloClient(
  uri: process.env.NODE_ENV === 'production' ? 'https://five-yards-api.herokuapp.com/graphql' : 'http://localhost:7777/graphql',
  credentials: 'include',
  clientState: 
    defaults,
    resolvers
  ,
  cache
);

// TODO: Doesn't work as expected
client.onResetStore(client.writeDefaults);

export default client;

【问题讨论】:

【参考方案1】:

AFAIK 的唯一方法是从 Apollo Boost 迁移,它为您配置了很多底层内容并手动设置 Apollo 客户端。迁移后,我可以按照文档调用onResetStore(),一切正常:)

Apollo Boost 迁移: https://www.apollographql.com/docs/react/advanced/boost-migration.html

【讨论】:

【参考方案2】:

我使用的是 Apollo Client 2.x,可能和 Apollo Boost 一样。 我对 Apollo Client 2.x 也有同样的问题,下面是我的解决方案。 在您配置 Apollo 的根文件中(例如 App.js):

cache.writeData(data : defaultData );  # I assume you already have this to initialise your default data.

# Then, you just add below underneath.
client.onResetStore(() => 
  cache.writeData(data : defaultData );
);

const App = () => (...

【讨论】:

以上是关于我需要将我的 Apollo 客户端缓存设置为默认值的主要内容,如果未能解决你的问题,请参考以下文章

设置默认缓存策略 apollo swift

查询后如何更新 Apollo 缓存?

Apollo 客户端持久缓存不起作用

Apollo GraphQL:更改默认标题 INSIDE React 子组件

为聊天应用程序缓存 apollo 客户端的最佳方式是啥?

如何为 Apollo GraphQL 客户端禁用 InMemoryCache?