GraphQL错误"字段必须是具有字段名称作为键的对象或返回此类对象的函数。"

时间:2016-09-08 23:46:14

标签: javascript node.js graphql graphql-js

为什么我从架构文件中收到此错误?

错误:

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)
    }

2 个答案:

答案 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
}

为我解决了这个问题。