GraphAware\Neo4j\Client\HttpDriver\Session::run PHP Method

run() public method

public run ( $statement, array $parameters = [], $tag = null )
$parameters array
    public function run($statement, array $parameters = array(), $tag = null)
    {
        $parameters = is_array($parameters) ? $parameters : array();
        $pipeline = $this->createPipeline($statement, $parameters, $tag);
        $response = $pipeline->run();
        return $response->results()[0];
    }