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

Update the READMEs table of contents #329

Merged
merged 1 commit into from
Nov 8, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,19 @@ JavaScript [reference implementation](https://github.com/graphql/graphql-js).
- [Installation](#installation)
- [Example](#example)
- [Creating a schema](#creating-a-schema)
- [Resolver registry](#resolver-registry)
- [Resolver middleware](#resolver-middleware)
- [Execution](#execution)
- [Queries](#queries)
- [Resolvers](#resolvers)
- [The N+1 problem](#the-n1-problem)
- [Variables](#variables)
- [Context](#context)
- [Scalars](#scalars)
- [Custom scalars](#custom-scalars)
- [Advanced usage](#advanced-usage)
- [Integration](#integration)
- [Laravel](#laravel)

## Installation

Expand Down Expand Up @@ -169,7 +179,7 @@ $schema = buildSchema($source, [
]);
```

#### Resolver middleware
### Resolver middleware

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