All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.com.apollographql.apollo3.api.Assertions.kt Maven / Gradle / Ivy

There is a newer version: 4.0.0-beta.7
Show newest version
@file:JvmName("Assertions")
package com.apollographql.apollo3.api

import com.apollographql.apollo3.exception.ApolloException
import kotlin.contracts.ExperimentalContracts
import kotlin.contracts.contract
import kotlin.jvm.JvmName

/**
 * Helper function for the JavaCodegen
 */
fun checkFieldNotMissing(value: Any?, name: String) {
  if (value == null) {
    throw ApolloException("Field $name is missing")
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy