-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
87 lines (77 loc) · 2.59 KB
/
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
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
import { ApolloServer } from '@apollo/server';
import { startStandaloneServer } from '@apollo/server/standalone'
// Independent program that communicates with frontend, data transport layer
// A schema is a collection of type definitions (hence "typeDefs")
// that together define the "shape" of queries that are executed against
// your data.
const typeDefs = `#graphql
# Comments in GraphQL strings (such as this one) start with the hash (#) symbol.
# This "Book" type defines the queryable fields for every book in our data source.
type Book {
title: String
author: String
pageCount: Int
}
# The "Query" type is special: it lists all of the available queries that
# clients can execute, along with the return type for each. In this
# case, the "books" query returns an array of zero or more Books (defined above).
type Query {
books: [Book]
book(index: Int): Book
}
type Mutation {
addBook(title:String!, author:String!, pageCount:Int!): Book
# removeBook
}
`;
const books = [
{
title: 'The Awakening',
author: 'Kate Chopin',
pageCount: 300,
},
{
title: 'City of Glass',
author: 'Paul Auster',
pageCount: 500,
},
{
title: 'Throne of Glass',
author: 'Hunter',
pageCount: 357,
}
];
// Resolvers define the technique for fetching the types defined in the
// schema. This resolver retrieves books from the "books" array above.
const resolvers = {
Query: {
books: () => books,
book: (_, params) => books[params.index] // _ is root, ignore argument
},
Mutation: {
addBook: (_, userInput) => {
const book = {
// User input is a type of param/argument
title: userInput.title,
author: userInput.author,
pageCount: userInput.pageCount,
};
books.push(book); // .push() returns length of array
return book;
}
},
};
// The ApolloServer constructor requires two parameters: your schema
// definition and your set of resolvers.
const server = new ApolloServer({
typeDefs,
resolvers,
});
// Passing an ApolloServer instance to the `startStandaloneServer` function:
// 1. creates an Express app
// 2. installs your ApolloServer instance as middleware
// 3. prepares your app to handle incoming requests
const { url } = await startStandaloneServer(server, { listen: { port: 5000 } });
console.log(`🚀 Server listening at: ${url}`);
// URL >> HTTP >> Domain >> Subdomain >> uri
// URI