summaryrefslogtreecommitdiff
path: root/src/Language/GraphQL/Type.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Language/GraphQL/Type.hs')
-rw-r--r--src/Language/GraphQL/Type.hs14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/Language/GraphQL/Type.hs b/src/Language/GraphQL/Type.hs
new file mode 100644
index 0000000..c6e8507
--- /dev/null
+++ b/src/Language/GraphQL/Type.hs
@@ -0,0 +1,14 @@
+-- | Reexports non-conflicting type system and schema definitions.
+module Language.GraphQL.Type
+ ( In.InputField(..)
+ , In.InputObjectType(..)
+ , Out.Field(..)
+ , Out.ObjectType(..)
+ , module Language.GraphQL.Type.Definition
+ , module Language.GraphQL.Type.Schema
+ ) where
+
+import Language.GraphQL.Type.Definition
+import Language.GraphQL.Type.Schema (Schema(..))
+import qualified Language.GraphQL.Type.In as In
+import qualified Language.GraphQL.Type.Out as Out