вроде как обновляется, но в то же время нет
Пытаюсь так:
<Mutation
mutation={ADD_TEAM}
update={(cache, res) => {
const GET_TEAMS = gql`
query {
team {
getList {
list {
id
title
logo {
publicLink
}
}
}
}
}
`
try {
const data = cache.readQuery({ query: GET_TEAMS });
data.team.getList.list.push(res.data.team.add);
cache.writeQuery({
query: GET_TEAMS,
data
});
} catch (error) {
console.error(error);
}
}}
>
еще актуально
Обсуждают сегодня