-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathmkdocs.yml
More file actions
37 lines (32 loc) · 882 Bytes
/
mkdocs.yml
File metadata and controls
37 lines (32 loc) · 882 Bytes
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
site_name: graphql-query
site_description: Complete Domain Specific Language (DSL) for GraphQL query in Python.
theme:
name: 'material'
palette:
primary: 'light blue'
accent: 'light blue'
analytics:
provider: google
property: G-FNZ7VNZWD7
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- admonition
repo_name: denisart/graphql-query
repo_url: https://github.com/denisart/graphql-query
site_url: https://denisart.github.io/graphql-query/
nav:
- Overview: index.md
- Introduction: intro.md
- How to use: usage.md
- From pydantic: from_data_model.md
- Usage Examples:
- List of Objects: list_of_objects.md
- With gql: with_gql.md
plugins:
- search