DefinitelyTyped/express-graphql/express-graphql-tests.ts
2016-03-01 12:42:11 +07:00

11 lines
288 B
TypeScript

/// <reference path="./express-graphql.d.ts" />
/// <reference path="../express/express.d.ts" />
var express = require("express");
var graphqlHTTP = require("express-graphql");
var app = express();
var schema = {};
app.use("/graphql", graphqlHTTP({ schema: schema, graphiql: true }));