-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
77 lines (68 loc) · 1.2 KB
/
index.js
File metadata and controls
77 lines (68 loc) · 1.2 KB
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
const { ApolloServer, gql } = require('apollo-server')
const typeDefs = gql`
enum Status {
AWESOME
GOOD
INTERESTING
BAD
HORRIBLE
}
type Author {
id: ID!
name: String!
}
type Phrase {
id: ID!
text: String!
entryDate: String
author: Author
status: Status
rating: Int
}
type Query {
phrases: [Phrase]
phrase(id: ID): Phrase
}
`
const phrases = [
{
id: 'asdasd',
text: 'Today is a fantastic day to play Ping-Pong',
entryDate: '19-02-2020',
author: { name: 'Eduardo' },
rating: 3
},
{
id: 'dsadsa',
text: 'Real men know how to play Ping Pong',
entryDate: '18-02-2020',
author: { name: 'André' },
rating: 5
}
]
const resolvers = {
Query: {
phrases: () => {
return phrases
},
phrase: (obj, { id }, context, info) => {
const foundPhrase = phrases.find(phrase => {
return phrase.id === id
})
return foundPhrase
}
}
}
const server = new ApolloServer({
typeDefs,
resolvers,
introspection: true,
playground: true
})
server
.listen({
port: process.env.PORT || 4000
})
.then(({ url }) => {
console.log(`Server started at ${url}`)
})