-
Notifications
You must be signed in to change notification settings - Fork 22
/
index.js
47 lines (36 loc) · 1.03 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import express from 'express';
import cors from 'cors';
import bodyParser from 'body-parser';
import { createServer } from 'http';
import { graphqlExpress, graphiqlExpress } from 'graphql-server-express';
// Subs
import { execute, subscribe } from 'graphql'
import { SubscriptionServer } from 'subscriptions-transport-ws';
import schema from './schema';
const PORT = 3020;
const SUBSCRIPTIONS_PATH = '/subscriptions';
var app = express();
app.use(cors());
app.use(bodyParser.urlencoded({ extended: true }));
app.use(bodyParser.json());
app.use('/graphql', graphqlExpress({ schema }));
app.use('/graphiql', graphiqlExpress({
endpointURL: '/graphql',
}));
const server = createServer(app)
server.listen(PORT, () => {
console.log(`API Server is now running on http://localhost:${PORT}/graphql`)
console.log(`API Subscriptions server is now running on ws://localhost:${PORT}${SUBSCRIPTIONS_PATH}`)
});
// Subs
SubscriptionServer.create(
{
schema,
execute,
subscribe,
},
{
server,
path: SUBSCRIPTIONS_PATH,
}
);