SchemaArg

data class SchemaArg(    val name: String,     val comment: String? = null,     val isNullable: Boolean,     val isRequired: Boolean,     val inputTypes: List<SchemaArgInputType>,     val deprecation: Deprecation? = null)

Constructors

Link copied to clipboard
constructor(    name: String,     comment: String? = null,     isNullable: Boolean,     isRequired: Boolean,     inputTypes: List<SchemaArgInputType>,     deprecation: Deprecation? = null)

Properties

Link copied to clipboard
val comment: String? = null
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard