-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
34 lines (27 loc) · 799 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
34
require('dotenv').config();
const { ApolloServer, gql } = require('apollo-server');
const { createContext } = require('./context');
const book = require('./book');
const library = require('./library');
const mutation = require('./utils/mutation');
const typeDef = gql`
type Query
type Mutation
`;
const dataSources = () => ({
bookStore: new book.Book(),
libraryStore: new library.Library(),
});
const server = new ApolloServer({
dataSources,
context: createContext,
typeDefs: [typeDef, mutation.typeDef, book.typeDef, library.typeDef],
resolvers: [mutation.resolvers, book.resolvers, library.resolvers],
subscriptions: false,
engine: {
apiKey: process.env.ENGINE_API_KEY,
},
});
server.listen().then(({ url }) => {
console.log(`🚀 Server ready at ${url}`);
});