gpt4 book ai didi

aws-lambda - Graphql 返回无法为不可为空的字段 Query.getDate 返回空值。由于我是 graphql 的新手,我想知道我的方法是错误的还是我的代码?

转载 作者:行者123 更新时间:2023-12-04 02:15:10 24 4
gpt4 key购买 nike

我已经创建了解析器、模式和处理程序,它们将从 dynamoDB 中获取一些记录。现在,当我执行查询时,我得到 “不能为非空字段 Query.getDate 返回空值”错误。我想知道我的方法是否错误或代码是否需要任何更改。

我的代码:https://gist.github.com/vivek-chavan/95e7450ff73c8382a48fb5e6a5b96025

输入到 lambda :

{
"query": "query getDate {\r\n getDate(id: \"0f92fa40-8036-11e8-b106-952d7c9eb822@eu-west-1:ba1c96e7-92ff-4d63-879a-93d5e397b18a\") {\r\n id\r\n transaction_date\r\n }\r\n }"
}

回复 :
{
"errors": [
{
"message": "Cannot return null for non-nullable field Query.getDate.",
"locations": [
{
"line": 2,
"column": 7
}
],
"path": [
"getDate"
]
}
],
"data": null
}

lambda 函数的日志:
[ { Error: Cannot return null for non-nullable field Query.getDate.
at completeValue (/var/task/node_modules/graphql/execution/execute.js:568:13)
at completeValueCatchingError (/var/task/node_modules/graphql/execution/execute.js:503:19)
at resolveField (/var/task/node_modules/graphql/execution/execute.js:447:10)
at executeFields (/var/task/node_modules/graphql/execution/execute.js:293:18)
at executeOperation (/var/task/node_modules/graphql/execution/execute.js:237:122)
at executeImpl (/var/task/node_modules/graphql/execution/execute.js:85:14)
at execute (/var/task/node_modules/graphql/execution/execute.js:62:229)
at graphqlImpl (/var/task/node_modules/graphql/graphql.js:86:31)
at /var/task/node_modules/graphql/graphql.js:32:223
at graphql (/var/task/node_modules/graphql/graphql.js:30:10)
message: 'Cannot return null for non-nullable field Query.getDate.',
locations: [Object],
path: [Object] } ],
data: null }
2019-02-25T10:07:16.340Z 9f75d1ea-2659-490b-ba59-5289a5d18d73 { Item:
{ model: 'g5',
transaction_date: '2018-07-05T09:30:31.391Z',
id: '0f92fa40-8036-11e8-b106-952d7c9eb822@eu-west-1:ba1c96e7-92ff-4d63-879a-93d5e397b18a',
make: 'moto' } }

提前致谢!

最佳答案

这是你的代码:

const data = {
getDate(args) {
var params = {
TableName: 'delete_this',
Key: {
"id": args.id
}
};
client.get(params, function(err,data){
if(err){
console.log('error occured '+err)
}else{
console.log(data)
}
});
},
};
const resolvers = {
Query: {
getDate: (root, args) => data.getDate(args),
},
};

您看到该错误是因为 getDate是架构中的非空字段,但它解析为空。你的解析器需要返回一个适当类型的值,或者一个将解析为该值的 Promise。如果您更改 data像这样
const data = {
getDate(args) {
return {
id: 'someString',
transaction_date: 'someString',
}
}
}

你会看到错误消失了。当然,您的目标是从数据库返回数据,因此我们需要重新添加该代码。但是,您现有的代码使用了回调。你在回调中所做的任何事情都是无关紧要的,因为它是在你的解析器函数返回之后运行的。所以我们需要使用 Promise 来代替。

虽然你可以 wrap a callback with Promise ,这对于 aws-sdk 来说是不必要的因为较新的版本支持 Promises。这样的事情应该就足够了:
const data = {
getDate(args) {
const params = //...
// must return the resulting Promise here
return client.get(params).promise().then(result => {
return {
// id and transaction_date based on result
}
})
}
}

或者使用 async/await 语法:
const data = {
async getDate(args) {
const params = //...
const result = await client.get(params).promise()
return {
// id and transaction_date based on result
}
}
}

关于aws-lambda - Graphql 返回无法为不可为空的字段 Query.getDate 返回空值。由于我是 graphql 的新手,我想知道我的方法是错误的还是我的代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54864089/

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