response → r

This commit is contained in:
Nebel 2023-11-27 16:10:42 +09:00
parent 6a4e90dae6
commit 5680e9dd90
Signed by: nebel
GPG key ID: 79807D08C6EF6460

View file

@ -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