From 5680e9dd9090491689fe45854b27a92b18b0c752 Mon Sep 17 00:00:00 2001 From: Kohei Watanabe Date: Mon, 27 Nov 2023 16:10:42 +0900 Subject: [PATCH] =?UTF-8?q?response=20=E2=86=92=20r?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f2e75a4..3e70167 100644 --- a/README.md +++ b/README.md @@ -211,8 +211,8 @@ fetch(`http://example/?${new URLSearchParams({ query: pokemonQuery })}`) ```kotlin // Kotlin -val response = apolloClient.query(pokemonQuery).await() -Log.d(response?.data?.pokemon?.classification) +val r = apolloClient.query(pokemonQuery).await() +Log.d(r?.data?.pokemon?.classification) ``` ```swift