apollo-server -> graphql-server upgrade, node-uuid -> uuid, supertest=2 -> supertest-3 (#39)

This commit is contained in:
jonathan schatz
2017-04-17 02:00:43 -07:00
committed by Mihail Diordiev
parent a0bbc23ef1
commit 073f27f720
5 changed files with 29 additions and 30 deletions

View File

@ -1,8 +1,8 @@
var apolloExpress = require('apollo-server').apolloExpress;
var graphqlExpress = require('graphql-server-express').graphqlExpress;
var schema = require('../api/schema');
module.exports = function (store) {
return apolloExpress(function() {
return graphqlExpress(function() {
return {
schema: schema,
context: {