未在“查询”子字段中触发解析器

时间:2019-08-02 00:11:25

标签: express graphql

我是Graphql的新手,在如何正确使用它方面遇到困难。

app.use(
"/graphql",
graphqlHTTP({
    schema,
    rootValue: root,
    context: MongoHelper,
    graphiql: true,
}),
);

const root = {
    Query: {
        hello: (obj, args, context, info) => `hello ${args.name}`,
    },
}

const schema = buildSchema(`
    type Query {
        hello(name:String!): String
    }`)

如果我将hello放入Query:{}子字段中,则不会触发此解析器。

这是我的查询 enter image description here

但是,如果我只是从Query:{}中取出它,那么它可以正常工作。 在Query:{}中使用嵌套解析器的正确方法是什么?

0 个答案:

没有答案