We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5048b55 commit 182c125Copy full SHA for 182c125
src/Graphql/Http/QueryHelper.elm
@@ -64,7 +64,7 @@ build forceMethod url queryParams maybeOperationName queryDocument =
64
, body =
65
Http.jsonBody <|
66
Json.Encode.object <|
67
- ( "query", Json.Encode.string serializedQuery )
+ ( "query", Json.Encode.string serializedQuery )
68
:: operationNameParamForPostRequest
69
}
70
src/Graphql/Internal/Builder/Object.elm
@@ -29,9 +29,10 @@ scalarDecoder =
29
, Decode.bool
30
|> Decode.map
31
(\bool ->
32
- if bool then
+ if bool then
33
"true"
34
- else
+
35
+ else
36
"false"
37
)
38
]
0 commit comments