-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.js
66 lines (61 loc) · 1.18 KB
/
schema.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
const { graphql, buildSchema } = require('graphql')
const mockDataBase = {
1: {
id: 1,
avatar: 'avatar',
name: 'name',
isTop: true,
content: 'content',
publishDate: 'publishDate',
commentNum: 10,
praiseNum: 4
},
2: {
id: 2,
avatar: 'avatar',
name: 'name',
isTop: true,
content: 'content',
publishDate: 'publishDate',
commentNum: 10,
praiseNum: 4
},
3: {
id: 3,
avatar: 'avatar',
name: 'name',
isTop: true,
content: 'content',
publishDate: 'publishDate',
commentNum: 10,
praiseNum: 4
},
}
const schema = buildSchema(`
type Comment {
id: Int
avatar: String
name: String
isTop: Boolean
content: String
publishDate: String
commentNum: Int
praiseNum: Int
}
type Query {
comment: [Comment]
}
type Mutation {
praise(id: Int): Int
}
`)
schema.getQueryType().getFields().comment.resolve = () => {
return Object.keys(mockDataBase).map(key => {
return mockDataBase[key]
})
}
schema.getMutationType().getFields().praise.resolve = (args, {id}) => {
mockDataBase[id].praiseNum++
return mockDataBase[id].praiseNum
}
module.exports = schema