Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
01-08-2020 11:41 AM
in the browser I can run some cypher say-
MATCH (start:Node{node:'IP-0000110637'}), (end:Node{node:'FD9-END'})
CALL algo.shortestPath.stream(start, end, "steps")
YIELD nodeId, cost
MATCH (o:Node) WHERE id(o) = nodeId
RETURN o.node AS node, cost
And get back my expected data in text or table form.
Now, if I want to perform the same query in C#,
using (var session = _Driver.Session())
{
var output = session.WriteTransaction(tx =>
{
IStatementResult result = tx.Run(command, new { command });
….
How can I get back the that text or table data I was getting in the browser?
I keep getting wrapped around the axle getting sent in different directions, use this package or that...
In there an easy within the Neo4j dotnet driver ?
Thanks
01-08-2020 12:27 PM
Please disregard, I figured out what I needed
Thanx
All the sessions of the conference are now available online