为什么我从架构文件中收到此错误?
错误:
graphql/jsutils/invariant.js:19
throw new Error(message);
^
Error: Entity fields must be an object with field names as keys or a function which returns such an object.
错误在entity
PersonType
道具附近。 msg表示Entity
上的每个字段都应该是一个对象,但我没有在任何地方看到这样的例子。
基本上,我试图根据Person查询返回的值从DuckDuckGo API获取一些数据。从API返回的数据是一个具有许多属性的对象,我试图用两个来填充entity
对象上的Person
对象。
我已经看过类型系统文档,但没有看到答案。 http://graphql.org/docs/api-reference-type-system/
这是在Node上运行并提供给GraphiQL UI的代码。
对此有任何建议将不胜感激!感谢。
代码:
const PersonType = new GraphQLObjectType({
name: 'Person',
description: '...',
fields: () => ({
name: {
type: GraphQLString,
resolve: (person) => person.name
},
url: {
type: GraphQLString,
resolve: (person) => person.url
},
films: {
type: new GraphQLList(FilmType),
resolve: (person) => person.films.map(getEntityByURL)
},
vehicles: {
type: new GraphQLList(VehicleType),
resolve: (person) => person.vehicles.map(getEntityByURL)
},
species: {
type: new GraphQLList(SpeciesType),
resolve: (person) => person.species.map(getEntityByURL)
},
entity: {
type: new GraphQLObjectType(EntityType),
resolve: (person) => getEntityByName(person.name)
}
})
});
const EntityType = new GraphQLObjectType({
name: 'Entity',
description: '...',
fields: () => ({
abstract: {
type: GraphQLString,
resolve: (entity) => entity.Abstract
},
image: {
type: GraphQLString,
resolve: (entity) => entity.Image
}
})
});
function getEntityByName(name) {
return fetch(`${DDG_URL}${name}`)
.then(res => res.json())
.then(json => json);
}
更新 这是我所指的代码,它提出了问题:
entity: {
type: EntityType, // <- no need to wrap this in GraphQLObjectType
resolve: (person) => getEntityByName(person.name)
}
答案 0 :(得分:3)
EntityType
已定义为GraphQLObjectType
。因此,无需再次GraphQLObjectType
再次EntityType
。{/ p>
更改entity
的{{1}}字段,如下所示:
PersonType
答案 1 :(得分:1)
在我看来,这是一个空类型。
更改
type SomeType {
}
到
type SomeType {
# Structs can't be empty but we have no useful fields to include so here we are.
placeholder: String
}
为我解决了这个问题。