This repository was archived by the owner on Mar 8, 2023. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
174184If you find yourself writing the same logic in multiple resolvers you should consider using middleware. Resolver
175185middleware allow you to efficiently manage functionality across multiple resolvers.
You can’t perform that action at this time.
0 commit comments