1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
next.js/examples/with-relay-modern-server-express/server/index.js
Diogo Dutra a996fba09c Added a new example with relay modern and a graphql server with express. (#4670)
* Added a new example with relay modern and a graphql server with express.

* removed .graphqlconfig file from with-relay-modern-server-express example
2018-12-10 16:50:35 +01:00

35 lines
978 B
JavaScript

const express = require('express')
const graphqlHTTP = require('express-graphql')
const next = require('next')
const path = require('path')
const fs = require('fs')
const { buildSchema } = require('graphql')
const rootValue = require('./rootValue')
const port = parseInt(process.env.PORT, 10) || 3000
const dev = process.env.NODE_ENV !== 'production'
const app = next({ dev })
const handle = app.getRequestHandler()
const schemaPath = path.join(__dirname, '/schema.graphql')
const schemaContent = fs.readFileSync(schemaPath).toString()
const graphqlSchema = buildSchema(schemaContent)
app.prepare()
.then(() => {
const server = express()
server.use('/graphql', graphqlHTTP({
schema: graphqlSchema,
graphiql: false,
rootValue: rootValue
}))
server.get('*', (req, res) => {
return handle(req, res)
})
server.listen(port, (err) => {
if (err) throw err
console.log(`> Ready on http://localhost:${port}`)
})
})