Skip to content

Commit aa4c88a

Browse files
committed
Add link to dataloader repo
1 parent 39d2ca5 commit aa4c88a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

documentation/batching.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ description: How to avoid the dreaded N+1 calls for data and make your graphql s
88
If you are using `graphql`, you are likely to making queries on a graph of data (no surprises there). However, it's easy
99
to implement inefficient code with naive loading of a graph of data.
1010

11-
Using `java-dataloader` will help you to make this a more efficient process by both caching and batching requests for that graph of data items. If `dataloader`
11+
Using [java-dataloader](https://github.com/graphql-java/java-dataloader) will help you to make this a more efficient process by both caching and batching requests for that graph of data items. If `dataloader`
1212
has seen a data item before, it will have cached the value and will return it without having to ask for it again.
1313

1414
Imagine we have the StarWars query outlined below. It asks us to find a hero, and their friend's names, and their friend's friend's

versioned_docs/version-v21/batching.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ description: How to avoid the dreaded N+1 calls for data and make your graphql s
88
If you are using `graphql`, you are likely to making queries on a graph of data (no surprises there). However, it's easy
99
to implement inefficient code with naive loading of a graph of data.
1010

11-
Using `java-dataloader` will help you to make this a more efficient process by both caching and batching requests for that graph of data items. If `dataloader`
11+
Using [java-dataloader](https://github.com/graphql-java/java-dataloader) will help you to make this a more efficient process by both caching and batching requests for that graph of data items. If `dataloader`
1212
has seen a data item before, it will have cached the value and will return it without having to ask for it again.
1313

1414
Imagine we have the StarWars query outlined below. It asks us to find a hero, and their friend's names, and their friend's friend's

versioned_docs/version-v22/batching.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ description: How to avoid the dreaded N+1 calls for data and make your graphql s
88
If you are using `graphql`, you are likely to making queries on a graph of data (no surprises there). However, it's easy
99
to implement inefficient code with naive loading of a graph of data.
1010

11-
Using `java-dataloader` will help you to make this a more efficient process by both caching and batching requests for that graph of data items. If `dataloader`
11+
Using [java-dataloader](https://github.com/graphql-java/java-dataloader) will help you to make this a more efficient process by both caching and batching requests for that graph of data items. If `dataloader`
1212
has seen a data item before, it will have cached the value and will return it without having to ask for it again.
1313

1414
Imagine we have the StarWars query outlined below. It asks us to find a hero, and their friend's names, and their friend's friend's

0 commit comments

Comments
 (0)