From 763910e7b59be5b9811cd16228db781af88868ab Mon Sep 17 00:00:00 2001 From: Naoya Yamashita Date: Mon, 7 Feb 2022 15:51:08 +0900 Subject: [PATCH] fix UPGRADE-v2.0.md --- UPGRADE-v2.0.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UPGRADE-v2.0.md b/UPGRADE-v2.0.md index 63f8f622..444bc12a 100644 --- a/UPGRADE-v2.0.md +++ b/UPGRADE-v2.0.md @@ -123,7 +123,7 @@ def resolve_my_field(root, info, my_arg): return ... ``` -**PS.: Take care with receiving args like `my_arg` as above. This doesn't work for optional (non-required) arguments as stantard `Connection`'s arguments (first, before, after, before).** +**PS.: Take care with receiving args like `my_arg` as above. This doesn't work for optional (non-required) arguments as stantard `Connection`'s arguments (first, last, after, before).** You may need something like this: ```python