commonMain.com.apollographql.apollo.api.json.JsonReaders2.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apollo-api-jvm Show documentation
Show all versions of apollo-api-jvm Show documentation
Apollo GraphQL API classes
The newest version!
/**
* The reason this file is named JsonReaders2 is that JsonReaders was made inaccessible from Java, and we couldn't change that
* without breaking binary compatibility
*/
@file:JvmName("JsonReaders")
package com.apollographql.apollo.api.json
import kotlin.jvm.JvmName
fun JsonReader.readTypename(): String {
val names = listOf("__typename")
val index = selectName(names)
check(index == 0) {
error("__typename not found")
}
return nextString() ?: error("__typename is null")
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy