-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathgatsby-config.js
More file actions
83 lines (82 loc) · 2.62 KB
/
Copy pathgatsby-config.js
File metadata and controls
83 lines (82 loc) · 2.62 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
78
79
80
81
82
83
const themeOptions = require('gatsby-theme-apollo-docs/theme-options');
module.exports = {
pathPrefix: '/docs/apollo-server',
plugins: [
{
resolve: 'gatsby-theme-apollo-docs',
options: {
...themeOptions,
root: __dirname,
subtitle: 'Apollo Server',
description: 'A guide to using Apollo Server',
githubRepo: 'apollographql/apollo-server',
defaultVersion: '2',
versions: {
'1': 'version-1',
},
sidebarCategories: {
null: [
'index',
'getting-started',
'[Changelog](https://github.com/apollographql/apollo-server/blob/main/CHANGELOG.md)',
],
'Defining a Schema': [
'schema/schema',
'schema/scalars-enums',
'schema/unions-interfaces',
'schema/directives',
'schema/creating-directives',
],
'Fetching Data': [
'data/resolvers',
'data/data-sources',
'data/errors',
'data/file-uploads',
'data/subscriptions',
],
'Apollo Federation': [
'federation/introduction',
'federation/implementing-services',
'federation/gateway',
'federation/entities',
'federation/value-types',
'federation/errors',
'federation/metrics',
'federation/migrating-from-stitching',
'federation/other-servers',
'federation/federation-spec',
],
Testing: ['testing/mocking', 'testing/testing', 'testing/graphql-playground'],
Performance: ['performance/caching', 'performance/apq'],
Security: ['security/authentication', 'security/terminating-ssl'],
Integrations: [
'integrations/middleware',
'integrations/plugins',
],
Deployment: [
'deployment/heroku',
'deployment/lambda',
'deployment/netlify',
'deployment/azure-functions',
],
Monitoring: ['monitoring/metrics', 'monitoring/health-checks'],
'API Reference': [
'api/apollo-server',
'api/apollo-federation',
'api/apollo-gateway',
'api/plugin/usage-reporting',
'api/plugin/schema-reporting',
'api/plugin/inline-trace',
'api/graphql-tools',
],
Appendices: [
'proxy-configuration',
'migration-two-dot',
'migration-file-uploads',
'migration-engine-plugins',
],
},
},
},
],
};