TypeDefinition

Companion
class
trait Sum
trait Mirror
class Object
trait Matchable
class Any

Type members

Classlikes

case class EnumTypeDefinition(description: Option[String], name: String, directives: List[Directive], enumValuesDefinition: List[EnumValueDefinition]) extends TypeDefinition
case class EnumValueDefinition(description: Option[String], enumValue: String, directives: List[Directive])
case class FieldDefinition(description: Option[String], name: String, args: List[InputValueDefinition], ofType: Type, directives: List[Directive])
case class InputObjectTypeDefinition(description: Option[String], name: String, directives: List[Directive], fields: List[InputValueDefinition]) extends TypeDefinition
case class InputValueDefinition(description: Option[String], name: String, ofType: Type, defaultValue: Option[InputValue], directives: List[Directive])
case class InterfaceTypeDefinition(description: Option[String], name: String, directives: List[Directive], fields: List[FieldDefinition]) extends TypeDefinition
case class ObjectTypeDefinition(description: Option[String], name: String, implements: List[NamedType], directives: List[Directive], fields: List[FieldDefinition]) extends TypeDefinition
case class ScalarTypeDefinition(description: Option[String], name: String, directives: List[Directive]) extends TypeDefinition
case class UnionTypeDefinition(description: Option[String], name: String, directives: List[Directive], memberTypes: List[String]) extends TypeDefinition

Inherited types

type MirroredElemLabels <: Tuple

The names of the product elements

The names of the product elements

Inherited from
Mirror
type MirroredLabel <: String

The name of the type

The name of the type

Inherited from
Mirror