summaryrefslogtreecommitdiff
path: root/src/Language/GraphQL/Type
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2020-10-03 07:34:34 +0200
committerEugen Wissner <belka@caraus.de>2020-10-03 07:34:34 +0200
commitd5f518fe827d3d279d6c37740820f296689539e4 (patch)
treef3b6fa3a397d0e9357fe77bb01373902890b1014 /src/Language/GraphQL/Type
parent6daae8a5219f62de98b4a65788e436fb1eac8cba (diff)
downloadgraphql-d5f518fe827d3d279d6c37740820f296689539e4.tar.gz
Validate required arguments
Diffstat (limited to 'src/Language/GraphQL/Type')
-rw-r--r--src/Language/GraphQL/Type/Out.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Language/GraphQL/Type/Out.hs b/src/Language/GraphQL/Type/Out.hs
index 89bbf1d..b0668f5 100644
--- a/src/Language/GraphQL/Type/Out.hs
+++ b/src/Language/GraphQL/Type/Out.hs
@@ -76,7 +76,7 @@ instance forall a. Eq (UnionType a) where
data Field m = Field
(Maybe Text) -- ^ Description.
(Type m) -- ^ Field type.
- (HashMap Name In.Argument) -- ^ Arguments.
+ In.Arguments -- ^ Arguments.
-- | These types may be used as output types as the result of fields.
--