Hi, i kept getting this error after switching from the old graphaware neo4j client to this one: Maximum function nesting level of '500' reached, aborting! I've tracked it down to line 84 in HttpOGMArrayTranslator.php: `$tbr->push($this->translateContainer($value));` i think $value should be $x, as this fixed it for me `$tbr->push($this->translateContainer($x));`