无法读取未定义的Apollo查询的属性“删除”

时间:2019-03-15 14:04:29

标签: reactjs apollo react-apollo

我使用Apollo Client与GraphQL API配合使用,当我第一次尝试使用 client.query()发送查询请求时,出现类似屏幕截图的错误,with enabled Debug JS Remotely { {3}},但请求有效,并且单击“关闭”按钮后,如果再次发送请求,则不会收到此错误。仅当我第一次发送请求且仅发送QUERY请求时,我才收到此错误消息,突变正常。知道为什么会发生吗?

查询请求

FIRST   SECOND
------  ------
123     abc
456     abc
789     abc
A1      abc
B70     abc
C44     abc

Apollo客户端

export const oauthRedirectURLRequest = (params: IOAuthRedirectURLParams) => {
client.query({
    variables: params.variables,
    query: OAUTHREDIRECTURL
})
.then((result) => store.dispatch(oauth_redirect_url_success(result.data.OauthRedirectUrl)))
.catch((error) => store.dispatch(oauth_redirect_url_failed(error.graphQLErrors)))
}

0 个答案:

没有答案