GraphAware\Neo4j\Client\Tests\Integration\IntegrationTestCase::emptyDb PHP Method

emptyDb() public method

Empties the graph database
public emptyDb ( )
    public function emptyDb()
    {
        $this->client->run('MATCH (n) OPTIONAL MATCH (n)-[r]-() DELETE r,n', null, null);
    }
IntegrationTestCase