apollo-link-state cache.writedata results in Missi

2019-04-23 18:16发布

When I call a mutation on my client I get the following warning:

writeToStore.js:111 Missing field updateLocale in {}

This is my stateLink:

const stateLink = withClientState({
  cache,
  resolvers: {
    Mutation: {
      updateLocale: (root, { locale }, context) => {
        context.cache.writeData({
          data: {
            language: {
              __typename: 'Language',
              locale,
            },
          },
        });
      },
    },
  },
  defaults: {
    language: {
      __typename: 'Language',
      locale: 'nl',
    },
  },
});

And this is my component:

export default graphql(gql`
  mutation updateLocale($locale: String) {
    updateLocale(locale: $locale) @client
  }
`, {
    props: ({ mutate }) => ({
      updateLocale: locale => mutate({
        variables: { locale },
      }),
    }),
  })(LanguagePicker);

What am I missing?

2条回答
叼着烟拽天下
2楼-- · 2019-04-23 18:41

At the moment, apollo-link-state requires you to return any result. It can be null too. This might be changed in the future.

查看更多
Lonely孤独者°
3楼-- · 2019-04-23 18:44

I was getting the same warning and solved it by returning the data from the mutation method.

updateLocale: (root, { locale }, context) => {

  const data = {
    language: {
      __typename: 'Language',
      locale,
    }
  };
  context.cache.writeData({ data });
  return data;
};
查看更多
登录 后发表回答