-
-
Notifications
You must be signed in to change notification settings - Fork 565
/
mkdocs.yml
39 lines (39 loc) · 1.23 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
site_name: graphql-php
site_description: PHP implementation of the GraphQL specification
repo_name: webonyx/graphql-php
repo_url: https://github.com/webonyx/graphql-php
theme:
name: material
docs_dir: docs/
markdown_extensions:
- toc:
permalink: true
- pymdownx.superfences
- pymdownx.highlight:
extend_pygments_lang:
- name: php
lang: php
options:
startinline: true
nav:
- About: index.md
- Getting Started: getting-started.md
- Concepts: concepts.md
- Complementary Tools: complementary-tools.md
- Schema Definition: schema-definition.md
- Type Definitions:
- Introduction: type-definitions/index.md
- Object Types: type-definitions/object-types.md
- Scalars: type-definitions/scalars.md
- Enums: type-definitions/enums.md
- Lists and Non-Nulls: type-definitions/lists-and-nonnulls.md
- Interfaces: type-definitions/interfaces.md
- Unions: type-definitions/unions.md
- Inputs: type-definitions/inputs.md
- Directives: type-definitions/directives.md
- Schema Definition Language: schema-definition-language.md
- Executing Queries: executing-queries.md
- Fetching Data: data-fetching.md
- Handling Errors: error-handling.md
- Security: security.md
- Class Reference: class-reference.md