Closed
Description
If the underlying redis connection object has been initialized with decode_responses=True, then redis graph throws an exception in the QueryResult_get_value @staticmethod attempting to decode stat details.
The workaround at this point is to always use decode_responses=False (the default) for any redis connction the that is also used for redisgraph queries; however, this complicates applications which use redis both key_value and redis graph at the same time since then at least 2 connections to the redis server must be maintained (4 if you are using slave and master servers for read/write respectively).
NOTE, this issue was moved from redisgraph as it's actually a problem in python library.