Field

@JsonClass(generateAdapter = true)
data class Field(    val name: String,     val description: String?,     val isDeprecated: Boolean = false,     val deprecationReason: String?,     val type: IntrospectionSchema.Schema.TypeRef,     val args: List<IntrospectionSchema.Schema.Field.Argument> = emptyList())

Constructors

Link copied to clipboard
fun Field(    name: String,     description: String?,     isDeprecated: Boolean = false,     deprecationReason: String?,     type: IntrospectionSchema.Schema.TypeRef,     args: List<IntrospectionSchema.Schema.Field.Argument> = emptyList())

Types

Link copied to clipboard
@JsonClass(generateAdapter = true)
data class Argument(    val name: String,     val description: String?,     val isDeprecated: Boolean = false,     val deprecationReason: String?,     val type: IntrospectionSchema.Schema.TypeRef,     val defaultValue: Any?)

Properties

Link copied to clipboard
val args: List<IntrospectionSchema.Schema.Field.Argument>
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