Skip to content

Commit

Permalink
Update doc according gatsby's core process reference
Browse files Browse the repository at this point in the history
  • Loading branch information
sagarnasit committed Oct 30, 2019
1 parent a74b21c commit d85f4ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/docs/schema-generation.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ This step creates GraphQL input filters for each field so the objects can be que

#### 4. ProcessedTypeNode creation with resolve implementation

Finally, you have everything you need to construct your final Gatsby Type object (known as `ProcessedTypeNode`). This contains the input filters and gqlType created above, and implements a resolve function for it using sift. More detail in the [Querying with Sift](/docs/schema-sift) section.
Finally, we have everything you need to construct your final Gatsby Type object (known as `ProcessedTypeNode`). This contains the input filters and gqlType created above, and implements a resolve function for it using sift. More detail in the [Querying with Sift](/docs/schema-sift) section.

#### 5. Create Connections for each type

You've inferred all GraphQL Types, and the ability to query for a single node. But now you need to be able to query for collections of that type (e.g. `allMarkdownRemark`). [Schema Connections](/docs/schema-connections/) takes care of that.
We've inferred all GraphQL Types, and the ability to query for a single node. But now we need to be able to query for collections of that type (e.g. `allMarkdownRemark`). [Schema Connections](/docs/schema-connections/) takes care of that.

0 comments on commit d85f4ab

Please sign in to comment.