Skip to content

Commit

Permalink
Merge pull request hayes#820 from davidgovea/relay-plugin-typo
Browse files Browse the repository at this point in the history
Fix minor typo in relay plugin docs
  • Loading branch information
hayes authored Mar 1, 2023
2 parents feafaa6 + 2cb2b78 commit 35f5c58
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/plugin-relay/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ builder.node(NumberThing, {
the `Node` interface the first time it is used. The `resolve` function for `id` should return a
number or string, which will be converted to a globalID. The relay plugin adds to new query fields
`node` and `nodes` which can be used to directly fetch nodes using global IDs by calling the
provided `loadOne` or `laodMany` method. Each node will only be loaded once by id, and cached if the
provided `loadOne` or `loadMany` method. Each node will only be loaded once by id, and cached if the
same node is loaded multiple times inn the same request. You can provide `loadWithoutCache` or
`loadManyWithoutCache` instead if caching is not desired, or you are already using a caching
datasource like a dataloader.
Expand Down
2 changes: 1 addition & 1 deletion website/pages/docs/plugins/relay.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ builder.node(NumberThing, {
the `Node` interface the first time it is used. The `resolve` function for `id` should return a
number or string, which will be converted to a globalID. The relay plugin adds to new query fields
`node` and `nodes` which can be used to directly fetch nodes using global IDs by calling the
provided `loadOne` or `laodMany` method. Each node will only be loaded once by id, and cached if the
provided `loadOne` or `loadMany` method. Each node will only be loaded once by id, and cached if the
same node is loaded multiple times inn the same request. You can provide `loadWithoutCache` or
`loadManyWithoutCache` instead if caching is not desired, or you are already using a caching
datasource like a dataloader.
Expand Down

0 comments on commit 35f5c58

Please sign in to comment.