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 にアクセスするにはどうすればよいですか?
情報をお寄せいただきありがとうございます。