如何将动态参数添加到 graphql 查询中
How to add in dynamic parameters into a graphql query
我想创建一个 GraphQL 查询,从我的 Vue 应用程序的数据字段中获取一些数据。但是,当我设置变量挂钩并尝试使用 this.object 引用我需要的对象时,我得到了无法读取未定义的 'xxx'。
apollo: {
question: {
query: gql `
query question($id: Int!) {
question(id: $id){
...
}
}
`, variables: { id: this.presentQuestionId}
}
},
Uncaught TypeError: Cannot read property 'presentQuestionId' of undefined is the error message that keeps on coming up.
variables
选项应该是 returns 一个对象的函数,如 :
variables(){
return{
id: this.presentQuestionId
}
}
我想创建一个 GraphQL 查询,从我的 Vue 应用程序的数据字段中获取一些数据。但是,当我设置变量挂钩并尝试使用 this.object 引用我需要的对象时,我得到了无法读取未定义的 'xxx'。
apollo: {
question: {
query: gql `
query question($id: Int!) {
question(id: $id){
...
}
}
`, variables: { id: this.presentQuestionId}
}
},
Uncaught TypeError: Cannot read property 'presentQuestionId' of undefined is the error message that keeps on coming up.
variables
选项应该是 returns 一个对象的函数,如 :
variables(){
return{
id: this.presentQuestionId
}
}