We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f9fa0cc + 50aaedb commit 4588c4dCopy full SHA for 4588c4d
1 file changed
src/GraphQL/Client/GqlType.purs
@@ -1,5 +1,6 @@
1
module GraphQL.Client.GqlType where
2
3
+import Data.Argonaut.Core (Json)
4
import Data.Maybe (Maybe)
5
import GraphQL.Client.Args (NotNull)
6
import GraphQL.Client.AsGql (AsGql)
@@ -13,6 +14,7 @@ instance GqlType Boolean "Boolean"
13
14
instance GqlType Int "Int"
15
instance GqlType Number "Float"
16
instance GqlType String "String"
17
+instance GqlType Json "Json"
18
19
instance GqlType t gqlName => GqlType (Maybe t) gqlName
20
instance GqlType t gqlName => GqlType (NotNull t) gqlName
0 commit comments