commonMain.it.unibo.alchemist.boundary.graphql.client.PlaySimulationMutation.kt Maven / Gradle / Ivy
The newest version!
//
// AUTO-GENERATED FILE. DO NOT MODIFY.
//
// This class was automatically generated by Apollo GraphQL version '4.0.0-beta.7'.
//
package it.unibo.alchemist.boundary.graphql.client
import com.apollographql.apollo3.annotations.ApolloAdaptableWith
import com.apollographql.apollo3.api.Adapter
import com.apollographql.apollo3.api.CompiledField
import com.apollographql.apollo3.api.CustomScalarAdapters
import com.apollographql.apollo3.api.Mutation
import com.apollographql.apollo3.api.json.JsonWriter
import com.apollographql.apollo3.api.obj
import it.unibo.alchemist.boundary.graphql.client.adapter.PlaySimulationMutation_ResponseAdapter
import it.unibo.alchemist.boundary.graphql.client.selections.PlaySimulationMutationSelections
import kotlin.Any
import kotlin.Boolean
import kotlin.Int
import kotlin.String
import it.unibo.alchemist.boundary.graphql.client.type.Mutation as CompiledMutation
public class PlaySimulationMutation() : Mutation {
override val ignoreErrors: Boolean = false
override fun equals(other: Any?): Boolean = other != null && other::class == this::class
override fun hashCode(): Int = this::class.hashCode()
override fun id(): String = OPERATION_ID
override fun document(): String = OPERATION_DOCUMENT
override fun name(): String = OPERATION_NAME
override fun serializeVariables(
writer: JsonWriter,
customScalarAdapters: CustomScalarAdapters,
withDefaultValues: Boolean,
) {
// This operation doesn't have any variable
}
override fun adapter(): Adapter = PlaySimulationMutation_ResponseAdapter.Data.obj()
override fun rootField(): CompiledField = CompiledField.Builder(
name = "data",
type = CompiledMutation.type
)
.selections(selections = PlaySimulationMutationSelections.__root)
.build()
@ApolloAdaptableWith(PlaySimulationMutation_ResponseAdapter.Data::class)
public data class Data(
/**
* Play the simulation
*/
public val play: String,
) : Mutation.Data
public companion object {
public const val OPERATION_ID: String =
"6d48549b7fa494fcba46c5616aa4aaf6c0ba449d8790358f26f2b710ea84ff01"
/**
* The minimized GraphQL document being sent to the server to save a few bytes.
* The un-minimized version is:
*
* ```
* mutation PlaySimulation {
* play
* }
* ```
*/
public val OPERATION_DOCUMENT: String
get() = "mutation PlaySimulation { play }"
public const val OPERATION_NAME: String = "PlaySimulation"
}
}