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 60af40a commit 48265b8Copy full SHA for 48265b8
testkit-backend/2cypher.go
@@ -53,9 +53,13 @@ func nativeToCypher(v interface{}) map[string]interface{} {
53
"utc_offset_s": offset,
54
}
55
if tzName != "Offset" {
56
- values["timezone_id"] = tzName
+ values["timezone_id"] = x.Location().String()
57
58
- return valueResponse("CypherList", values)
+ return map[string]interface{}{
59
+ "name": "CypherDateTime",
60
+ "data": values,
61
+ }
62
+
63
case []interface{}:
64
values := make([]interface{}, len(x))
65
for i, y := range x {
0 commit comments