graphql/Data/GraphQL/AST/Core.hs

39 lines
968 B
Haskell
Raw Normal View History

2017-01-26 23:52:07 +01:00
-- | This is the AST meant to be executed.
module Data.GraphQL.AST.Core where
import Data.Int (Int32)
import Data.List.NonEmpty (NonEmpty)
import Data.String
2017-01-26 23:52:07 +01:00
import Data.Text (Text)
type Name = Text
2017-01-26 23:52:07 +01:00
type Document = NonEmpty Operation
2017-01-26 23:52:07 +01:00
data Operation = Query (NonEmpty Field)
2017-01-26 23:52:07 +01:00
| Mutation (NonEmpty Field)
deriving (Eq,Show)
data Field = Field (Maybe Alias) Name [Argument] [Field] deriving (Eq,Show)
type Alias = Name
2017-01-26 23:52:07 +01:00
data Argument = Argument Name Value deriving (Eq,Show)
data Value = ValueInt Int32
-- GraphQL Float is double precision
| ValueFloat Double
| ValueString Text
| ValueBoolean Bool
| ValueNull
2017-01-26 23:52:07 +01:00
| ValueEnum Name
| ValueList [Value]
| ValueObject [ObjectField]
deriving (Eq,Show)
instance IsString Value where
fromString = ValueString . fromString
2017-01-26 23:52:07 +01:00
data ObjectField = ObjectField Name Value deriving (Eq,Show)