所以基本上我想在突变后更新我的 UI,但这真的很痛苦,已经卡了几天了。
我的一些组件依赖于我的根查询,并映射结果。
每当我创建一个新资源并更新我的根查询时,不再加载原始结果,这会导致can't read property map of undefined
, 因为结果不再存在。添加检查没有任何作用,它只会永远加载。
这是我的突变:
export const withCreateLink = graphql(createLink, {
// Mutate normally gets passed as prop to wrapped component
props({ownProps, mutate}) {
return {
// But for updating the store we're actually hijacking mutate to a custom function
createLink(url, description, group) {
return mutate({
variables: {
url,
description,
group
},
optimisticResponse: {
createLink: {
__typename: 'Link',
id: -1,
url,
description,
group: {
id: group
}
}
},
update: (proxy, mutationResult) => {
const query = getAllGroups;
const data = proxy.readQuery({query});
data.allGroups.forEach((groupData) => {
if(groupData.id == group)
groupData.links.push(mutationResult.data.createLink);
});
proxy.writeQuery({
query,
data
})
}
})
}
}
}
});
我只想通过刷新我的资源添加到的组来简单地更新我的 UI。有人可以帮帮我吗?