express-graphql
模块提供了一个创建 Express 服务的简单方法来运行 GraphQL API。
import { graphqlHTTP } from 'express-graphql'; // ES6var { graphqlHTTP } = require('express-graphql'); // CommonJS
graphqlHTTP({schema: GraphQLSchema,graphiql?: ?boolean,rootValue?: ?any,context?: ?any,pretty?: ?boolean,formatError?: ?Function,validationRules?: ?Array<any>,}): Middleware
上面的代码是基于 GraphQL schema 构建了一个 Express 应用。
在 express-graphql 指南 上查看范例的使用。
在 GitHub README 上查看更多关于这个方法的详细文档。