GraphQLType

sealed class GraphQLType(source)

Represents a parsed GraphQL type reference from a variable or field definition.

Inheritors

Types

Link copied to clipboard
data class List(val of: GraphQLType, val nullable: Boolean = true) : GraphQLType

A list type reference, e.g. "String!!", "MyInput".

Link copied to clipboard
data class Named(val name: String, val nullable: Boolean = true) : GraphQLType

A named type reference, e.g. "String", "MyInput", "DateTime".