0
idに基づいてGET
リクエストのいずれかにgraphqlを使用しようとしています。コードは次のとおりです。単純なgraphQLクエリでエラーが発生する
const { graphql, buildSchema } = require('graphql');
EmployeeService.prototype.getEmployee = function() {
// Construct a schema
const schema = buildSchema(`
type Query {
employee(id="12345") {
id
items {
id
name
}
}
}
`);
// The root provides a resolver function
let root = {
employee:() => id
};
// Run the GraphQL query
graphql(schema, '{ employee }', root).then((response) => {
console.log(response);
});
};
http://graphql.org/graphql-js/の文書に従おうとしています。 GraphQLエラーが発生しました:"Syntax Error GraphQL request (3:19) Expected :, found =↵↵2: type Query {↵3: employee (id="12345") {↵ ^↵4: id↵"
アドバイスをしてください。
ありがとうございます。物事は今明らかです。 – Mustang