You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the following block in utils.go throws the error during the properties encoding.
switch i.(type) {
case string:
s := i.(string)
return strconv.Quote(s)
case int:
return strconv.Itoa(i.(int))
case float64:
return strconv.FormatFloat(i.(float64), 'f', -1, 64)
case bool:
return strconv.FormatBool(i.(bool))
case []interface {}:
arr := i.([]interface{})
return arrayToString(arr)
default:
panic("Unrecognized type to convert to string")
}
Since the list/map is working via the Redis-CLI. I suspect this as a client library bug.
The text was updated successfully, but these errors were encountered:
Is there any fix available for this bug? Specially interested in the fix after learning that starting from Redis graph 2.4 map datatypes are supported: "introducing map datatype #1514", RedisGraph/RedisGraph#1514.
version : v2.0.2
issue: I'm not able to add list/map types as the property value.
example:
error:
the following block in utils.go throws the error during the properties encoding.
Since the list/map is working via the Redis-CLI. I suspect this as a client library bug.
The text was updated successfully, but these errors were encountered: