GraphAware\Neo4j\Client\Formatter\Response::getResult PHP 메소드

getResult() 공개 메소드

public getResult ( ) : Result
리턴 Result
    public function getResult()
    {
        if (null !== $this->results && !$this->results instanceof Result) {
            reset($this->results);
            return $this->results[0];
        }
        return $this->results;
    }