-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy path_meta.ts
More file actions
58 lines (57 loc) · 1.3 KB
/
_meta.ts
File metadata and controls
58 lines (57 loc) · 1.3 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
const meta = {
index: '',
'-- 1': {
type: 'separator',
title: 'Getting Started',
},
'getting-started': '',
'running-an-express-graphql-server': '',
'graphql-clients': '',
'authentication-and-express-middleware': '',
'-- 2': {
type: 'separator',
title: 'Core Concepts',
},
'basic-types': '',
'passing-arguments': '',
'object-types': '',
'mutations-and-input-types': '',
nullability: '',
'abstract-types': '',
'custom-scalars': '',
'-- 3': {
type: 'separator',
title: 'Advanced Guides',
},
'constructing-types': '',
'oneof-input-objects': '',
'defer-stream': '',
subscriptions: '',
'type-generation': '',
'cursor-based-pagination': '',
'advanced-custom-scalars': '',
'operation-complexity-controls': '',
'n1-dataloader': '',
'caching-strategies': '',
'resolver-anatomy': '',
'graphql-errors': '',
'using-directives': '',
'authorization-strategies': '',
'-- 4': {
type: 'separator',
title: 'Testing',
},
'testing-graphql-servers': '',
'testing-approaches': '',
'testing-operations': '',
'testing-resolvers': '',
'testing-best-practices': '',
'-- 5': {
type: 'separator',
title: 'Production & Scaling',
},
'secure-for-production': '',
'going-to-production': '',
'scaling-graphql': '',
};
export default meta;