CompiledArgument

class CompiledArgument(name: String, value: Any?, isKey: Boolean)

The Kotlin representation of a GraphQL argument

value can be

Note: for now, enums are mapped to Strings

Constructors

CompiledArgument
Link copied to clipboard
common
fun CompiledArgument(name: String, value: Any?, isKey: Boolean = false)

Properties

isKey
Link copied to clipboard
common
val isKey: Boolean = false
name
Link copied to clipboard
common
val name: String
value
Link copied to clipboard
common
val value: Any?