commonMain.com.apollographql.apollo3.api.Assertions.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
@file:JvmName("Assertions")
package com.apollographql.apollo3.api
import com.apollographql.apollo3.exception.DefaultApolloException
import kotlin.jvm.JvmName
/**
* Helper function for the JavaCodegen
*/
fun checkFieldNotMissing(value: Any?, name: String) {
if (value == null) {
throw DefaultApolloException("Field '$name' is missing")
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy