gpt4 book ai didi

apollo - [网络错误] : Error: Error writing result to store for query Using Apollo Link State

转载 作者:行者123 更新时间:2023-12-04 16:02:07 25 4
gpt4 key购买 nike

我正在使用 Apollo-link-state 为我的应用程序创建和更新商店。但是,执行突变时出现以下错误:

[Network error]: Error: Error writing result to store for query:
query getLocation {
location @client {
coords
__typename
}
}

Cannot read property 'location' of undefined

我的默认商店如下所示:

const defaultState = {
location: {
__typename: 'Location',
coords: [36, -87]
},
};

export default defaultState;

我在突变中使用的查询如下所示:

export const GET_LOCATION = gql`
query getLocation{
location @client{
coords
}
}
`;

我没看出查询有什么问题。

最佳答案

您只是在 defaultState 中缺少默认位置对象的 id,只是像这样尝试并成功了:

export default {
location: {
__typename: 'Location',
id: 0,
coords: [36, 23],
},
}

关于apollo - [网络错误] : Error: Error writing result to store for query Using Apollo Link State,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50164822/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com