diff options
| author | Eugen Wissner <belka@caraus.de> | 2020-05-25 07:41:21 +0200 |
|---|---|---|
| committer | Eugen Wissner <belka@caraus.de> | 2020-05-25 07:41:21 +0200 |
| commit | 61dbe6c7280a899b485146aa8557948417e78360 (patch) | |
| tree | 2b3bb2ea7144dd57a44076ab8f5af3321d5a95f1 /src/Language/GraphQL/Type.hs | |
| parent | eb90a4091c1f2586640ee49d6f91fc83c05239f6 (diff) | |
| download | graphql-61dbe6c7280a899b485146aa8557948417e78360.tar.gz | |
Split input/output types and values into 2 modules
Diffstat (limited to 'src/Language/GraphQL/Type.hs')
| -rw-r--r-- | src/Language/GraphQL/Type.hs | 14 |
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 |
