2

试图让 GraphQL 与 JavaScript 一起工作。不知道我的错误在哪里。

我的代码

const graphql = require('graphql');
const _ = require('lodash');
const {
  GraphQLObjectType,
  GraphQLString,
  GraphQLInt,
  GraphQLSchema
} = graphql;
const users = [
  { id: "23", firstName: "Bill", age: 20},
  { id: "47", firstName: "Sam", age: 21}
];
const UserType = new GraphQLObjectType({
  name: 'User',
  fields: {
    id: {type: GraphQLString},
    firstName: {type: GraphQLString},
    age:{type: GraphQLInt}
  }
});
const RootQuery = new GraphQLObjectType({
  name: 'RootQueryType',
  fields: {
    user: {
      type: UserType,
      args: { id: { type: GraphQLString } },
      resolve(parentValue, args) {
         return _.find(users, { id: args.id });
      }
    }
  }
});
module.exports = new GraphQLSchema ({
  query: RootQuery
});

我正进入(状态

{ "errors": [ { "message": "Type RootQueryType 必须定义一个或多个字段。" } ] }

在此处输入图像描述

为什么它不起作用?

4

2 回答 2

2

你忘了使用箭头函数

const UserType = new GraphQLObjectType({
  name: 'User',
  fields:()=>( {
    id: {type: GraphQLString},
    firstName: {type: GraphQLString},
    age:{type: GraphQLInt}

});
于 2018-09-09T12:40:47.193 回答
1

我相信您的错误只是在您的查询中。您使用 RootQueryType 的fields对象来创建查询端点。您的案例中的fields对象仅包含一个查询:user. 但是,您正在尝试查询User,这是不同的。

const RootQuery = new GraphQLObjectType({
  name: 'RootQueryType',
  fields: {
    // The items listed here are going to be your root query endpoints.
    // Which in this case is only `user`.
    user: {
      type: UserType,
      args: { id: { type: GraphQLString } },
      resolve(parentValue, args) {
         return _.find(users, { id: args.id });
      }
    }
  }
});

因此,您需要使用user.

此外,您需要确保正确进行查询。您尝试实现的基本查询语法如下所示:

{
  user(id: "23") {
    id
    firstName
    age
  }
}

让我知道这是否适合您。


有关查询的一些文档:

GraphQL 查询

DevHints - GraphQL

于 2018-04-08T01:44:00.743 回答