-
Notifications
You must be signed in to change notification settings - Fork 53
/
mkdocs.yml
114 lines (107 loc) · 3.56 KB
/
mkdocs.yml
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
site_name: DGS Framework
edit_uri: edit
repo_name: GitHub
repo_url: https://github.com/netflix/dgs-framework
site_url: https://netflix.github.io/dgs/
remote_branch: gh-pages
nav:
- Getting Started: index.md
- Spring GraphQL Integration: spring-graphql-integration.md
- New and Noteworthy: announcements.md
- Configuration: configuration.md
- Data fetching: datafetching.md
- Testing: query-execution-testing.md
- Mutations: mutations.md
- Code Generation: generating-code-from-schema.md
- Data Loaders (N+1): data-loaders.md
- Error Handling: error-handling.md
- Federation: federation.md
- Examples: examples.md
- Videos: videos.md
- Advanced:
- Using the Platform BOM: advanced/platform-bom.md
- Nested data fetchers: advanced/context-passing.md
- Using Virtual Threads: advanced/virtual-threads.md
- Hot reloading schemas: advanced/schema-reloading.md
- Java GraphQL Client: advanced/java-client.md
- Kotlin CodeGen (Experimental): advanced/kotlin-codegen.md
- Security: advanced/security.md
- File Uploads: advanced/file-uploads.md
- Subscriptions: advanced/subscriptions.md
- Interfaces and Unions: advanced/type-resolvers-for-abstract-types.md
- Instrumentation (Tracing, Metrics): advanced/instrumentation.md
- Intercepting Http request and Response for MVC: advanced/intercepting-http-request-response.md
- GraphQLContext : advanced/graphqlcontext-leveraging.md
- Data Fetching Context: advanced/custom-datafetcher-context.md
- Federated Testing: advanced/federated-testing.md
- Dynamic schemas: advanced/dynamic-schemas.md
- Relay Pagination: advanced/relay-pagination.md
- Operation Caching: advanced/operation-caching.md
- Adding Custom Scalars: scalars.md
- Adding Custom Directives: advanced/custom-directives.md
- Custom Object Mapper: advanced/custom-object-mapper.md
- Mocking: advanced/mocking.md
- Logging: advanced/logging.md
- React Example: https://github.com/Netflix/dgs-framework/tree/master/graphql-dgs-example-java
extra_css:
- 'stylesheets/extra.css'
- 'stylesheets/dgs_theme.css?v=3.0.13'
extra_javascript:
- 'js/mermaid.min.js'
theme:
name: material
palette:
# Light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: blue
accent: light green
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
# Dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: blue
accent: light green
toggle:
icon: material/toggle-switch
name: Switch to light mode
custom_dir: dgs_theme
favicon: images/favicon.png
logo: images/logo--blue.svg
icon:
repo: octicons/mark-github-16
plugins:
- search
markdown_extensions:
- toc:
permalink: True
- admonition
- meta
- footnotes
# pymdownx
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.mark
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tilde
# - pymdownx.snippets:
# auto_append:
# - docs/common/snippets/REFERENCES.md
# check_paths: !ENV [ SNIPPETS_CHECK_PATHS, 'false' ]
- pymdownx.highlight:
linenums: true
linenums_style: pymdownx-inline
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
# ----
# Support annotations, ref https://squidfunk.github.io/mkdocs-material/reference/annotations/
- attr_list
- md_in_html