summaryrefslogtreecommitdiff
path: root/Data/GraphQL/Schema.hs
diff options
context:
space:
mode:
authorDanny Navarro <j@dannynavarro.net>2017-01-29 18:44:03 -0300
committerDanny Navarro <j@dannynavarro.net>2017-02-02 12:44:03 -0300
commit693b7d18dcd48525b10ce297f89b3b33fd020784 (patch)
treea8ee10c9442485b152084ec395044a2001b1477f /Data/GraphQL/Schema.hs
parentf35e1f949ab3ee718ab773baf9f38ac411d49a28 (diff)
downloadgraphql-693b7d18dcd48525b10ce297f89b3b33fd020784.tar.gz
Introduce Tranform module
In the Transform module the Full AST will converted to Core AST. This commit also includes a partial implementation of Fragment replacement.
Diffstat (limited to 'Data/GraphQL/Schema.hs')
-rw-r--r--Data/GraphQL/Schema.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Data/GraphQL/Schema.hs b/Data/GraphQL/Schema.hs
index aa25046..548c4eb 100644
--- a/Data/GraphQL/Schema.hs
+++ b/Data/GraphQL/Schema.hs
@@ -20,7 +20,7 @@ module Data.GraphQL.Schema
, Value(..)
) where
-import Control.Applicative (Alternative( empty))
+import Control.Applicative (Alternative(empty))
import Data.Foldable (fold)
import Data.List.NonEmpty (NonEmpty)
import Data.Maybe (fromMaybe)