我有一个get_notifications查询,它获取一个分页的通知列表;我希望清除缓存中的整个列表(目前正在尝试使用变异的update函数中的@connection指令来实现这一点)。
获取通知查询:
query GetNotifications($offset: Int!, $limit: Int!) {
getNotifications(offset: $offset, limit: $limit)
@connection(key: "notif") {
id
title
body
read
link
image {
id
url
}
}
}
按钮onpress()处理程序触发删除所有变异:
onPress={() => {
deleteAllNotif({
update: cache => {
cache.writeQuery({
query: GET_NOTIFICATIONS,
data: {
getNotifications: []
}
});
}
});
}}
上面的代码似乎没有删除缓存中的clear getnotifications。我是不是误解了什么?有没有更好的方法来实现我的目标?
暂无答案!
目前还没有任何答案,快来回答吧!