Skip to content

Enum Type

nalchevanidze edited this page May 16, 2019 · 2 revisions

Enums

You can use Union Types as Enums, but they're not allowed to have any parameters. you should just associate it with ENUM type

type instance KIND City = ENUM

data City
  = Athens
  | Colchis
  | Delphi
  | Ithaca
  | Sparta
  | Troy
  deriving (Generic, GQLType)
Clone this wiki locally