Skip to content

Commit 182c125

Browse files
committed
formatted
1 parent 5048b55 commit 182c125

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/Graphql/Http/QueryHelper.elm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ build forceMethod url queryParams maybeOperationName queryDocument =
6464
, body =
6565
Http.jsonBody <|
6666
Json.Encode.object <|
67-
( "query", Json.Encode.string serializedQuery )
67+
( "query", Json.Encode.string serializedQuery )
6868
:: operationNameParamForPostRequest
6969
}
7070

src/Graphql/Internal/Builder/Object.elm

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,10 @@ scalarDecoder =
2929
, Decode.bool
3030
|> Decode.map
3131
(\bool ->
32-
if bool then
32+
if bool then
3333
"true"
34-
else
34+
35+
else
3536
"false"
3637
)
3738
]

0 commit comments

Comments
 (0)