-
Notifications
You must be signed in to change notification settings - Fork 3
/
mkdocs.yml
40 lines (36 loc) · 998 Bytes
/
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
site_name: AIOGQLC
site_description: "Python aynchronous/IO GraphQL client with file upload and subscription support."
site_url: https://doctorjohn.github.io/aiogqlc/
repo_url: https://github.com/DoctorJohn/aiogqlc/
theme:
name: material
features:
- navigation.sections
- navigation.instant
- navigation.tracking
- navigation.top
plugins:
- search
markdown_extensions:
- admonition
- pymdownx.highlight:
use_pygments: true
anchor_linenums: true
- pymdownx.tabbed:
alternate_style: true
- pymdownx.superfences
- pymdownx.details
nav:
- Overview: index.md
- Getting started: getting-started.md
- Operations:
- Queries: queries.md
- Mutations: mutations.md
- File Uploads: file-uploads.md
- Subscriptions: subscriptions.md
- Authentication: authentication.md
- Advanced Usage: advanced-usage.md
- Guides:
- Testing: testing.md
- Migrating: migrating.md
- Contributing: contributing.md