gpt4 book ai didi

vue.js - Apollo 客户端 - 错误 : Can't find field allLinks({}) on object (ROOT_QUERY)

转载 作者:搜寻专家 更新时间:2023-10-30 22:25:19 24 4
gpt4 key购买 nike

操作系统:Windows 10 专业版
浏览器:Opera 47.0.2631.71 (PGO)
Apollo 客户端:1.9.2
订阅-传输-ws:0.6.0
View :2.4.2
vue- Apollo :2.1.0-rc.5

因此,我在尝试使用 graphcool 端点运行查询时遇到了上述错误。只有在尝试对新创建的链接项进行投票时才会出现此问题。这里有什么问题?

完整的错误是:

"allLinks({\"first\":5,\"skip\":0,\"orderBy\":\"createdAt_DESC\"})": [
{
"type": "id",
"id": "Link:cj7ui2wn78joh0118s471fvgs",
"generated": false
},
{
"type": "id",
"id": "Link:cj7ue9p2pyk9e0118w9dc3eav",
"generated": false
},
{
"type": "id",
"id": "Link:cj7uaj5vwsa5b0126inei4jz0",
"generated": false
},
{
"type": "id",
"id": "Link:cj7toqpwstxmp0168exm6lihp",
"generated": false
},
{
"type": "id",
"id": "Link:cj7too3wgteq20154ax1agats",
"generated": false
}
],
"_allLinksMeta": {
"type": "id",
"id": "$ROOT_QUERY._allLinksMeta",
"generated": true
},
"allLinks({\"first\":5,\"skip\":5,\"orderBy\":\"createdAt_DESC\"})": [
{
"type": "id",
"id": "Link:cj7toe2egt9j40115r74dzmzi",
"generated": false
},
{
"type": "id",
"id": "Link:cj7to769uslpc0163giiymaeq",
"generated": false
},
{
"type": "id",
"id": "Link:cj7tdamdkb2c401074qhjw2ig",
"generated": false
},
{
"type": "id",
"id": "Link:cj7qlm4qb8vd501967t9jkvix",
"generated": false
},
{
"type": "id",
"id": "Link:cj7qawaic5wgz0133mzzqvmat",
"generated": false
}
]
}.
at readStoreResolver (readFromStore.js?f639:42)
at executeField (graphql.js?206d:74)
at eval (graphql.js?206d:31)
at Array.forEach (<anonymous>)
at executeSelectionSet (graphql.js?206d:26)
at graphql (graphql.js?206d:20)
at diffQueryAgainstStore (readFromStore.js?f639:75)
at readQueryFromStore (readFromStore.js?f639:18)
at TransactionDataProxy.readQuery (proxy.js?d9b2:114)
at VueComponent.updateStoreAfterVote (LinkItem.vue?42d3:51)
tryFunctionOrLogError @ errorHandling.js?e4be:7
data @ store.js?2706:115
apolloReducer @ store.js?8997:42
combination @ combineReducers.js?a3f5:120
computeNextEntry @ VM314:2
recomputeStates @ VM314:2
(anonymous) @ VM314:2
dispatch @ createStore.js?8c3f:165
dispatch @ VM314:2
(anonymous) @ ApolloClient.js?f973:237
(anonymous) @ store.js?8997:16
(anonymous) @ QueryManager.js?2cbe:142
Promise resolved (async)
(anonymous) @ QueryManager.js?2cbe:127
QueryManager.mutate @ QueryManager.js?2cbe:124
ApolloClient.mutate @ ApolloClient.js?f973:197
mutate @ vue-apollo.esm.js?1632:3069
voteForLink @ LinkItem.vue?42d3:38
boundFn @ vue.runtime.esm.js?a427:180
click @ LinkItem.vue?219f:18
invoker @ vue.runtime.esm.js?a427:1817

查询:

export const ALL_LINKS_QUERY = gql`
query AllLinksQuery($first: Int, $skip: Int, $orderBy: LinkOrderBy) {
allLinks(first: $first, skip: $skip, orderBy: $orderBy) {
id
createdAt
url
description
postedBy {
id
name
}
votes {
id
user {
id
}
}
}
_allLinksMeta {
count
}
}
`

代码:

      voteForLink () {
const userId = localStorage.getItem(GC_USER_ID)
const voterIds = this.link.votes.map(vote => vote.user.id)
if (voterIds.includes(userId)) {
alert(`User (${userId}) already voted for this link.`)
return
}
const linkId = this.link.id
this.$apollo.mutate({
mutation: CREATE_VOTE_MUTATION,
variables: {
userId,
linkId
},
update: (store, { data: { createVote } }) => {
this.updateStoreAfterVote(store, createVote, linkId)
}
})
},
updateStoreAfterVote (store, createVote, linkId) {
// 1
const data = store.readQuery({
query: ALL_LINKS_QUERY
})

// 2
const votedLink = data.allLinks.find(link => link.id === linkId)
votedLink.votes = createVote.link.votes

// 3
store.writeQuery({ query: ALL_LINKS_QUERY, data })
}

最佳答案

好的,所以通过将变量与 ALL_LINKS_QUERY 调用相关联来解决问题:

        const data = store.readQuery({
query: ALL_LINKS_QUERY,
variables: {
first: 5,
skip: 0,
orderBy: 'createdAt_DESC'
}
})

关于vue.js - Apollo 客户端 - 错误 : Can't find field allLinks({}) on object (ROOT_QUERY),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46349512/

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