GraphAware\Neo4j\Client\Formatter\Response::getResult PHP Méthode

getResult() public méthode

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