sql:
MATCH (p:Person) RETURN p.name AS name
/// <summary>
/// http://localhost:7474/browser/
/// D:\neo4j\neo4j-community-5.26.0\bin>neo4j.bat console
/// geovindu,Geovin Du
/// </summary>
public class NodeResult
{
public string title { get; set; }
public string label { get; set; }
}
public class Movie
{
public string title { get; set; }
public int released { get; set; }
public string tagline { get; set; }
}
public class Person
{
public string Name { get; set; } = "";
}
/// <summary>
/// https://github.com/neo4j/neo4j-dotnet-driver
///https://github.com/neo4j-examples/movies-dotnetcore-bolt
///https://github.com/neo4j-examples/movies-dotnet-bolt
///https://neo4j.com/docs/dotnet-manual/current/session-api/
/// <