From 5d9e94da9afb29ceaf9a41cc848213492f60a9bc Mon Sep 17 00:00:00 2001 From: Marc Scholten Date: Thu, 28 Mar 2024 14:36:03 +0100 Subject: [PATCH] Fixed ihp-graphql --- ihp-graphql/IHP/GraphQL/Parser.hs | 2 +- ihp-graphql/IHP/GraphQL/SchemaCompiler.hs | 2 +- ihp-graphql/IHP/GraphQL/ToText.hs | 2 +- ihp-graphql/IHP/GraphQL/Types.hs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ihp-graphql/IHP/GraphQL/Parser.hs b/ihp-graphql/IHP/GraphQL/Parser.hs index 9be5432c3..4dc4ef358 100644 --- a/ihp-graphql/IHP/GraphQL/Parser.hs +++ b/ihp-graphql/IHP/GraphQL/Parser.hs @@ -5,7 +5,7 @@ Copyright: (c) digitally induced GmbH, 2022 -} module IHP.GraphQL.Parser where -import IHP.Prelude +import IHP.Prelude hiding (Type) import IHP.GraphQL.Types import qualified Data.Text as Text import Data.Attoparsec.Text diff --git a/ihp-graphql/IHP/GraphQL/SchemaCompiler.hs b/ihp-graphql/IHP/GraphQL/SchemaCompiler.hs index df46e2271..dd0b48692 100644 --- a/ihp-graphql/IHP/GraphQL/SchemaCompiler.hs +++ b/ihp-graphql/IHP/GraphQL/SchemaCompiler.hs @@ -1,6 +1,6 @@ module IHP.GraphQL.SchemaCompiler where -import IHP.Prelude +import IHP.Prelude hiding (Type) import IHP.GraphQL.Types import IHP.IDE.SchemaDesigner.Types diff --git a/ihp-graphql/IHP/GraphQL/ToText.hs b/ihp-graphql/IHP/GraphQL/ToText.hs index 6d60857f5..c52fd8cf9 100644 --- a/ihp-graphql/IHP/GraphQL/ToText.hs +++ b/ihp-graphql/IHP/GraphQL/ToText.hs @@ -1,6 +1,6 @@ module IHP.GraphQL.ToText where -import IHP.Prelude +import IHP.Prelude hiding (Type) import IHP.GraphQL.Types import qualified Data.Text as Text diff --git a/ihp-graphql/IHP/GraphQL/Types.hs b/ihp-graphql/IHP/GraphQL/Types.hs index 16d23022a..59087d04d 100644 --- a/ihp-graphql/IHP/GraphQL/Types.hs +++ b/ihp-graphql/IHP/GraphQL/Types.hs @@ -1,6 +1,6 @@ module IHP.GraphQL.Types where -import IHP.Prelude +import IHP.Prelude hiding (Type) import qualified Data.HashMap.Strict as HashMap data GraphQLRequest = GraphQLRequest