Argument

@Serializable
data class Argument(    val name: String,     val description: String?,     val isDeprecated: Boolean = false,     val deprecationReason: String?,     val type: IntrospectionSchema.Schema.TypeRef,     val defaultValue: String?)

Constructors

Link copied to clipboard
fun Argument(    name: String,     description: String?,     isDeprecated: Boolean = false,     deprecationReason: String?,     type: IntrospectionSchema.Schema.TypeRef,     defaultValue: String?)

Properties

Link copied to clipboard
val defaultValue: String?
Link copied to clipboard
val deprecationReason: String?
Link copied to clipboard
val description: String?
Link copied to clipboard
val isDeprecated: Boolean = false
Link copied to clipboard
val name: String
Link copied to clipboard
val type: IntrospectionSchema.Schema.TypeRef