diff options
Diffstat (limited to 'Data/GraphQL/AST.hs')
| -rw-r--r-- | Data/GraphQL/AST.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Data/GraphQL/AST.hs b/Data/GraphQL/AST.hs index 0a09671..422ce9e 100644 --- a/Data/GraphQL/AST.hs +++ b/Data/GraphQL/AST.hs @@ -61,8 +61,8 @@ type TypeCondition = NamedType -- * Values data Value = ValueVariable Variable - | ValueInt Int -- TODO: Should this be `Integer`? - | ValueFloat Double -- TODO: Should this be `Scientific`? + | ValueInt Int + | ValueFloat Double | ValueBoolean Bool | ValueString Text | ValueEnum Name |
