graphql ,理解新 GraphQLObjectType 中的 resolve 函数

graphql , understanding _ in resolve function in new GraphQLObjectType

解析函数中的“_”参数是什么意思?。它有什么用?

const queryType = new GraphQLObjectType({
    name: 'RootQuery',
    fields: {
        usersCount: {
            type: GraphQLInt,
            resolve: (_, args, { db }) =>
                db.collection('users').count()
        }
    }
});

我在哪里可以阅读有关解析参数的文档?

"_"就是随便赋值什么的,因为不会用到这个参数。

resolve:    (root, args, context, info) => ...

阅读更多内容:

https://github.com/graphql/graphql-js/issues/844