mirror of
https://github.com/kou029w/intro-to-graphql.git
synced 2025-01-18 16:08:03 +00:00
response → r
This commit is contained in:
parent
6a4e90dae6
commit
5680e9dd90
1 changed files with 2 additions and 2 deletions
|
@ -211,8 +211,8 @@ fetch(`http://example/?${new URLSearchParams({ query: pokemonQuery })}`)
|
||||||
|
|
||||||
```kotlin
|
```kotlin
|
||||||
// Kotlin
|
// Kotlin
|
||||||
val response = apolloClient.query(pokemonQuery).await()
|
val r = apolloClient.query(pokemonQuery).await()
|
||||||
Log.d(response?.data?.pokemon?.classification)
|
Log.d(r?.data?.pokemon?.classification)
|
||||||
```
|
```
|
||||||
|
|
||||||
```swift
|
```swift
|
||||||
|
|
Loading…
Add table
Reference in a new issue