-
-
Notifications
You must be signed in to change notification settings - Fork 104
/
mkdocs.yaml
49 lines (45 loc) · 1.32 KB
/
mkdocs.yaml
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
site_name: pg_graphql
site_url: https://supabase.github.io/pg_graphql
site_description: A PostgreSQL extension adding GraphQL support
repo_name: supabase/pg_graphql
repo_url: https://github.com/supabase/pg_graphql
nav:
- Welcome: 'index.md'
- Quickstart: 'quickstart.md'
- SQL Interface: 'sql_interface.md'
- API: 'api.md'
- Views: 'views.md'
- Functions: 'functions.md'
- Computed Fields: 'computed_fields.md'
- Security: 'security.md'
- Configuration: 'configuration.md'
- Guides:
- Supabase: 'supabase.md'
- Usage with Apollo: 'usage_with_apollo.md'
- Usage with Relay: 'usage_with_relay.md'
- Example Schema: 'example_schema.md'
- Installation: 'installation.md'
- Contributing: 'contributing.md'
- Changelog: 'changelog.md'
theme:
name: 'material'
features:
- navigation.expand
favicon: 'assets/favicon.ico'
logo: 'assets/favicon.ico'
homepage: https://supabase.github.io/pg_graphql
palette:
primary: black
accent: light green
markdown_extensions:
- pymdownx.highlight:
linenums: true
guess_lang: false
use_pygments: true
pygments_style: default
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.snippets
- pymdownx.tasklist
- admonition