我正在学习GraphQL,并且是该技术的新手。我无法找出此语法错误的原因。当我在graphiql上对其进行测试时,会引发意外的令牌语法错误
这是我的server.js:
const express = require("express");
const graphqlHTTP = require("express-graphql");
const schema = require("./schema");
const app = express();
app.get(
"/graphql",
graphqlHTTP({
schema: schema,
graphiql: true
})
);
app.listen(4000, () => {
console.log("Server listening to port 4000...");
});
这是我的模式:
const {
GraphQLObjectType,
GraphQLString,
GraphQLInt,
GraphQLSchema,
GraphQLList,
GraphQLNotNull
} = require("graphql");
// HARD CODED DATA
const customers = [
{ id: "1", name: "John Doe", email: "jdoe@gmail.com", age: 35 },
{ id: "2", name: "Kelly James", email: "kellyjames@gmail.com", age: 28 },
{ id: "3", name: "Skinny Pete", email: "skinnypete@gmail.com", age: 31 }
];
// CUSTOMER TYPE
const CustomerType = new GraphQLObjectType({
name: "Customer",
fields: () => ({
id: { type: GraphQLString },
name: { type: GraphQLString },
email: { type: GraphQLString },
age: { type: GraphQLInt }
})
});
// ROOT QUERY
const RootQuery = new GraphQLObjectType({
name: "RootQueryType",
fields: {
customer: {
type: CustomerType,
args: {
id: { type: GraphQLString }
},
resolve(parentValue, args) {
for (let i = 0; i < customers.length; i++) {
if (customers[i].id == args.id) {
return customers[i];
}
}
}
},
customers: {
type: new GraphQLList(CustomerType),
resolve(parentValue, args) {
return customers;
}
}
}
});
module.exports = new GraphQLSchema({
query: RootQuery
});
有人可以指出我正确的方向吗?我在这里找不到问题吗?
答案 0 :(得分:1)
根据express-middleware
的文档,您应该使用app.use
而不是app.get
来安装中间件:
app.use('/graphql', graphqlHTTP({schema, graphiql: true}))
这样做将使GraphiQL在浏览器中可用,但也将允许您向POST
端点发出/graphql
请求。通过使用app.get
,您可以进入GraphiQL界面,但实际上无法发出POST
请求。当您在GraphiQL中发出请求时,它会尝试向您的端点发出一个POST
请求,但是由于您的应用未配置为接收该请求,因此该请求失败。您看到的错误是由于尝试分析通用错误快递而导致的缺少到JSON的路由的结果。
答案 1 :(得分:0)
就我而言,此错误消息是由一个愚蠢的错误引起的,所以我的故事可能对某人有用:
我只是发布了普通的 graphQL 查询而不是 JSON,而不是使用 {"query":"graphqlQueryHere ..."}
的 JSON 值。请看看你不这样做。