We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81e7eee commit b76e89cCopy full SHA for b76e89c
docs/execution/dataloader.rst
@@ -36,10 +36,10 @@ and then call your batch function with all requested keys.
36
user_loader = UserLoader()
37
38
user1 = await user_loader.load(1)
39
- user1_best_friend = await user_loader.load(user1.best_friend_id))
+ user1_best_friend = await user_loader.load(user1.best_friend_id)
40
41
user2 = await user_loader.load(2)
42
- user2_best_friend = await user_loader.load(user2.best_friend_id))
+ user2_best_friend = await user_loader.load(user2.best_friend_id)
43
44
45
A naive application may have issued *four* round-trips to a backend for the
0 commit comments