-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.ts
35 lines (28 loc) · 1.29 KB
/
index.ts
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
require('dotenv').config()
import * as express from 'express'
import * as cors from 'cors'
import * as bodyParser from 'body-parser'
import { graphqlExpress } from 'apollo-server-express'
import { makeRemoteExecutableSchema, introspectSchema } from 'graphql-tools'
import { HttpLink } from 'apollo-link-http'
import fetch from 'node-fetch'
import { expressPlayground } from 'graphql-playground-middleware'
import { Engine } from 'apollo-engine'
async function run() {
// Create and start Apollo Engine instance
const engine = new Engine({ engineConfig: { apiKey: process.env.APOLLO_ENGINE_KEY! }, graphqlPort: 3000 });
engine.start();
// Create schema from remote endpoint
const endpoint = process.env.GRAPHCOOL_ENDPOINT
const link = new HttpLink({ uri: endpoint, fetch })
const graphcoolSchema = makeRemoteExecutableSchema({
schema: await introspectSchema(link),
link,
})
const app = express()
app.use(engine.expressMiddleware());
app.use('/graphql', cors(), bodyParser.json(), graphqlExpress({ schema: graphcoolSchema,tracing: true, cacheControl: true }))
app.use('/playground', expressPlayground({ endpoint: '/graphql' }))
app.listen(3000, () => console.log('Server running. Open http://localhost:3000/playground to run queries.'))
}
run().catch(console.error.bind(console))