mutation
abstract suspend fun mutation(selections: String, variables: Map<String, Any?> = emptyMap()): M(source)
Loads the provided selections on the root Mutation type, and returns the response typed as M. This is a convenience method that combines selectionsFor and mutation.
Example usage:
val result = ctx.mutation("{ createUser(input: $input) { id name } }")Content copied to clipboard
Return
The mutation result typed as M
Parameters
selections
The selections to load on the root Mutation type
variables
Optional variables to use in the selections