Before I succed connect neo4j community with php client. Now I try to neo4j desktop, when I created a database (database name:bigal) in neo4j desktop, how to connect it with neo4j php client?
require_once 'vendor/autoload.php';
use GraphAware\Neo4j\Client\ClientBuilder;
$client = ClientBuilder::create()
->addConnection('default', 'http://neo4j:password@localhost:7474')
->addConnection('bolt', 'bolt://neo4j:password@localhost:7687')
->build();