Skip to content

Instantly share code, notes, and snippets.

View Chase-William's full-sized avatar
💭
Learning / Programming

Chase William R. Chase-William

💭
Learning / Programming
View GitHub Profile
// Bolt
var boltGraphClient = new BoltGraphClient("neo4j://localhost:7687", "username", "password");
await boltGraphClient.ConnectAsync();
// Bolt
var graphClient = new BoltGraphClient("neo4j://localhost:7687", "username", "password");
var connectTask = graphClient.ConnectAsync();
connectTask.Wait();