Neoxygen\NeoClient\Formatter\Result::getNodeById PHP 메소드

getNodeById() 공개 메소드

Returns a single node by its Neo4j node ID number, or null if the node is not present in the result.
public getNodeById ( integer $id ) : Neoxygen\NeoClient\Formatter\Node | null
$id integer Neo4j node ID.
리턴 Neoxygen\NeoClient\Formatter\Node | null
    public function getNodeById($id)
    {
        if (!isset($this->nodes[$id])) {
            return;
        }
        return $this->nodes[$id];
    }