gpt4 book ai didi

javascript - 在 GraphQL 中将参数从根查询传递到子查询

转载 作者:行者123 更新时间:2023-12-01 01:31:34 24 4
gpt4 key购买 nike

我正在向我的根查询发送一个参数 (companyId)。我有一个解析器,其中查询不需要此参数,但子查询需要。我有这个函数,我将数据添加到 dataValues 中,然后尝试返回它,但这不起作用,但似乎应该起作用。如果我打印出问题,我会在那里看到 companyId,但它不会作为结果传递给我的 QuestionType 以供后续显示。

questions: {
type: new GraphQLList(QuestionType),
args: {
companyId: {
type: GraphQLInt
}
},
resolve(parent, args) {
return connection.models.question.findAll({
order: [ ['questionCategoryId', 'ASC'], ['orderPlacement', 'ASC']]
}).then((questions) => {
for (var i = 0; i < questions.length; i++) {
questions[i].dataValues.companyId = parseInt(args.companyId)
}
return questions
})
}
}

是否有更好的方法将参数从根查询传递到后续查询,而该参数不在根级别使用?

最佳答案

下类后...这有效,我只需要添加一个解析器并返回parent.dataValues.companyId

关于javascript - 在 GraphQL 中将参数从根查询传递到子查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53236215/

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