You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: documentation/batching.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ description: How to avoid the dreaded N+1 calls for data and make your graphql s
8
8
If you are using `graphql`, you are likely to making queries on a graph of data (no surprises there). However, it's easy
9
9
to implement inefficient code with naive loading of a graph of data.
10
10
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`
12
12
has seen a data item before, it will have cached the value and will return it without having to ask for it again.
13
13
14
14
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
Copy file name to clipboardExpand all lines: versioned_docs/version-v21/batching.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ description: How to avoid the dreaded N+1 calls for data and make your graphql s
8
8
If you are using `graphql`, you are likely to making queries on a graph of data (no surprises there). However, it's easy
9
9
to implement inefficient code with naive loading of a graph of data.
10
10
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`
12
12
has seen a data item before, it will have cached the value and will return it without having to ask for it again.
13
13
14
14
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
Copy file name to clipboardExpand all lines: versioned_docs/version-v22/batching.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ description: How to avoid the dreaded N+1 calls for data and make your graphql s
8
8
If you are using `graphql`, you are likely to making queries on a graph of data (no surprises there). However, it's easy
9
9
to implement inefficient code with naive loading of a graph of data.
10
10
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`
12
12
has seen a data item before, it will have cached the value and will return it without having to ask for it again.
13
13
14
14
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