-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
69 lines (57 loc) · 1.63 KB
/
app.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import express from 'express'
import bodyParser from 'body-parser'
import routes from './config/routes'
import graphQLHTTP from 'express-graphql'
import schema from './graphql/schema'
import FalcorServer from 'falcor-express'
import FalcorPostman from 'falcor-postman'
import FalcorRoutes from './falcor/router'
const app = express()
app.use(bodyParser.json())
app.use(bodyParser.text({ type: 'text/*' }))
app.use(bodyParser.urlencoded({ extended: false }))
app.use('/', routes)
app.use('/graphql', (req, res, next) => {
res.header('Access-Control-Allow-Credentials', true)
res.header('Access-Control-Allow-Headers', 'content-type, authorization, content-length, x-requested-with, accept, origin')
res.header('Access-Control-Allow-Methods', 'POST, GET, OPTIONS')
res.header('Allow', 'POST, GET, OPTIONS')
res.header('Access-Control-Allow-Origin', '*')
if (req.method === 'OPTIONS') {
res.sendStatus(200)
} else {
next()
}
}, graphQLHTTP({
schema,
graphiql: { endpointURL: '/repl' }
}))
if (process.env.NODE_ENV == 'development') {
app.use(
'/model.json',
FalcorServer.dataSourceRoute((req, res) => {
console.log(req.query && req.query.paths)
return FalcorRoutes
})
)
} else {
app.use(
'/model.json',
FalcorServer.dataSourceRoute((req, res) => FalcorRoutes)
)
}
app.use(FalcorPostman({
middlewarePath: '/falcor/repl',
falcorModelPath: '/model.json',
app
}))
app.use((req, res, next) => {
const err = new Error('Not Found')
err.status = 404
next(err)
})
app.use((err, req, res, next) => {
res.status(err.status || 500)
res.json({ error: err.message })
})
module.exports = app