我目前正在尝试使用NodeJS进行GraphQL,我不知道,为什么以下查询会出现此错误:
{
library{
name,
user {
name
email
}
}
}
我不确定type
的{{1}}是否正确,因为在任何一个例子中我都看过他们使用resolveLibrary
,但在我的情况下我真的想要回归单个用户对象,而不是用户数组。
我的代码:
new GraphQL.GraphQLList()
错误:
const GraphQL = require('graphql');
const DB = require('../database/db');
const user = require('./user').type;
const library = new GraphQL.GraphQLObjectType({
name: 'library',
description: `This represents a user's library`,
fields: () => {
return {
name: {
type: GraphQL.GraphQLString,
resolve(library) {
return library.name;
}
},
user: {
type: user,
resolve(library) {
console.log(library.user);
return library.user
}
}
}
}
});
const resolveLibrary = {
type: library,
resolve(root) {
return {
name: 'My fancy library',
user: {
name: 'User name',
email: {
email: 'test@123.de'
}
}
}
}
}
module.exports = resolveLibrary;
所以我的Error: Expected Iterable, but did not find one for field library.user.
架构提供了一个library
字段,它返回正确的数据(调用console.log)。
答案 0 :(得分:18)
我也遇到了这个问题但似乎很明显为什么会发生这种情况。您从解析程序返回的内容似乎与架构中的返回类型不匹配。
特别是对于错误消息Expected Iterable, but did not find one for field library.user.
,您的架构需要一个数组(Iterable)但您没有在解析器中返回一个数组
我在schema.js中有这个:
login(email: String, password: String): [SuccessfulLogin]
我把它改为:
login(email: String, password: String): SuccessfulLogin
注意“SuccessfulLogin”周围的方括号。无论您是想更新解析器返回类型还是更新架构的期望
,都取决于您答案 1 :(得分:4)
我猜你的user
是GraphQLList
的一个实例,这就是字段用户期望解析为可迭代对象的原因。
答案 2 :(得分:2)
我遇到了同样的问题,但是我在GraphQL和Go中使用。
解决方案: 我提到返回类型为列表(或者可以说是数组),但是我的解析器函数返回的是接口而不是接口列表。
之前是=>
Type: graphql.NewList(graphqll.UniversalType)
后来我将其更改为=>
Type: graphqll.UniversalType
graphqll.UniversalType:'graphqll'是我的用户定义包的名称,'UniversalType'是我创建的GraphQL对象。
graphql对象的先前结构是:
var GetAllEmpDet = &graphql.Field{
Type: graphql.NewList(graphqll.UniversalType),
Resolve: func(params graphql.ResolveParams) (interface{}, error) {
...
...
// Your resolver code goes here, how you handle.
...
return models.Universal, nil // models.Universal is struct and not list of struct so it gave that error.
},
}
当我将其更改为:
var GetAllEmpDet = &graphql.Field{
Type: graphqll.UniversalType,
Resolve: func(params graphql.ResolveParams) (interface{}, error) {
...
...
// Your resolver code goes here, how you handle.
...
return models.Universal, nil // models.Universal is struct and not list of struct so it gave that error.
},
}
答案 3 :(得分:1)
我有同样的问题。我使用的是查找而不是过滤器。
答案 4 :(得分:1)
就我而言,它与Response
有关,但我没有定义任何resolve方法。
django-graphene