我正在研究 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?
提前感谢所有人提供的任何信息。