# 作用及场景
- 将接口写的更细致
- 使用接口更灵活,不需要获取多余数据,让前端决定获取哪些数据
# 例子
constconst express = require('express');
const app = new express();
const { buildSchema } = require("graphql");
const { graphqlHTTP } = require("express-graphql");
// 支持 String, Int, Float, Boolean, ID, [String], 以及自定义类型
// 传参:【!】为必须传参项
const schema = buildSchema(`
type TypeBooks {
name: String,
desc: String,
comments: [String]
}
type BookDetail {
_id: Int,
name: String,
desc: String
}
type Query {
hello: String,
getName: String,
getAge: Int,
getAllNames: [String],
Book: TypeBooks,
bookDetail(_id: Int!): BookDetail
}
`);
const root = {
hello: async () => new Promise(res => setTimeout(() => res("hehehehehe"), 1000)),
getName: () => "你好呀 HDY",
getAge: () => 18,
getAllNames: () => ["hdy", "张三", "李四"],
Book: () => ({
name: "炸裂志",
desc: "好看的书",
comments: ["1233", "3423ERQW4"]
}),
bookDetail: ({ _id }) => ({
_id,
name: "你不知道的JS",
desc: "好书好书好书"
})
}
app.use("/", graphqlHTTP({
schema,
rootValue: root,
graphiql: true,
}))
app.listen(8888, () => {
console.log('listen 8888');
});
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
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