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.
2 parents 74c7aa5 + eb234d1 commit 69f2cd4Copy full SHA for 69f2cd4
Sources/GraphQL/Map/Map.swift
@@ -606,6 +606,10 @@ extension Map : Codable {
606
if container.decodeNil() {
607
self = .null
608
}
609
+
610
+ else if let bool = try? container.decode(Bool.self) {
611
+ self = .bool(bool)
612
+ }
613
614
else if let double = try? container.decode(Double.self) {
615
self = .number(Number(double))
0 commit comments