0

我正在研究 GitHunt-API 和 GitHunt-React 中的 pubsub 代码。我看到这段代码:

const withData = graphql(COMMENT_QUERY, {
  options({ params }) {
    return {
      variables: { repoName: `${params.org}/${params.repoName}` },
    };
  },
  props({ data: { loading, currentUser, entry, updateQuery } }) {
    return { loading, currentUser, entry, updateCommentsQuery: updateQuery };
  },
});

这是我的应用程序中它的当前版本:

const CreateIMPageWithDataAndMutations = graphql(GETIMS_QUERY, {
    options({ toID, userID }) {
        return {
            variables: { fromID: `${userID}`, toID: `${toID}`}
        };
    },
    props({ data: { loading, updateQuery } }) {
        debugger;  //<==CHECKING HERE SHOWS updateQuery IS UNDEFINED
        return { loading, updateCommentsQuery: updateQuery };
    },

})(CreateIMPageWithMutations);

updateQuery 以undefined. 我需要做什么才能访问 updateQuery?

提前感谢所有人提供的任何信息。

4

1 回答 1

0

Slack 上的@helfer 提供了答案。将 react-apollo 更新到最新版本修复了它。

于 2016-10-25T16:38:30.773 回答