Skip to content
This repository was archived by the owner on Mar 8, 2023. It is now read-only.

Commit 94f4882

Browse files
authored
Merge pull request #329 from digiaonline/readme-toc-update
Update the READMEs table of contents
2 parents 6ac91f9 + 286b15e commit 94f4882

1 file changed

Lines changed: 11 additions & 1 deletion

File tree

README.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,19 @@ JavaScript [reference implementation](https://github.com/graphql/graphql-js).
2525
- [Installation](#installation)
2626
- [Example](#example)
2727
- [Creating a schema](#creating-a-schema)
28+
- [Resolver registry](#resolver-registry)
29+
- [Resolver middleware](#resolver-middleware)
2830
- [Execution](#execution)
31+
- [Queries](#queries)
32+
- [Resolvers](#resolvers)
33+
- [The N+1 problem](#the-n1-problem)
34+
- [Variables](#variables)
35+
- [Context](#context)
2936
- [Scalars](#scalars)
37+
- [Custom scalars](#custom-scalars)
38+
- [Advanced usage](#advanced-usage)
3039
- [Integration](#integration)
40+
- [Laravel](#laravel)
3141

3242
## Installation
3343

@@ -169,7 +179,7 @@ $schema = buildSchema($source, [
169179
]);
170180
```
171181

172-
#### Resolver middleware
182+
### Resolver middleware
173183

174184
If you find yourself writing the same logic in multiple resolvers you should consider using middleware. Resolver
175185
middleware allow you to efficiently manage functionality across multiple resolvers.

0 commit comments

Comments
 (0)