-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
33 lines (25 loc) · 780 Bytes
/
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
/*
* @Name: First NodeJS Apollo MongoDB GraphQL
* @Author: Max Base
* @Repository: https://github.com/BaseMax/first-nodejs-apollo-mongodb-graphql
* @Date: 2020-12-24
*/
import {ApolloServer, gql } from 'apollo-server-express'
import express from 'express'
import mongoose from 'mongoose'
import { resolvers } from './resolvers'
import { typeDefs } from './typeDefs'
const PORT = 4000
const startServer = async () => {
const app = express()
const server = new ApolloServer({
typeDefs,
resolvers
})
server.applyMiddleware({ app })
mongoose.connect('mongodb://localhost:27017/test', {useUnifiedTopology: true, useNewUrlParser: true})
app.listen({ port: PORT }, () => {
console.log(`Server ready at http://localhost:${PORT}`)
})
}
startServer()