-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
48 lines (38 loc) · 1.02 KB
/
server.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
48
import express from 'express';
import graphQLHTTP from 'express-graphql';
import path from 'path';
import bodyParser from 'body-parser';
// import morgan from 'morgan';
//database and schema
import { Schema } from './data/schema';
import db from './data';
import config from './config';
const GRAPHQL_PORT = config.port;
let graphQLServer;
if (graphQLServer) {
graphQLServer.close();
}
const app = express();
app.use(bodyParser.json()) //parsing application/json
app.use(bodyParser.urlencoded({ extended: true }));
app.use(bodyParser.text({ type: 'application/graphql' }));
// app.use(morgan('combined'));
app.use('/graphql', graphQLHTTP({
graphiql: true,
pretty: true,
schema: Schema,
formatError: error => ({
message: error.message,
})
}));
app.get('*', (req, res) => {
res.json({
message: 'graphql server at /graphql endpoint',
});
});
graphQLServer = app.listen(GRAPHQL_PORT, err => {
if (err) {
return err;
}
console.log(`GraphQL server running on http://localhost:${GRAPHQL_PORT}/graphql`)
})