cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

Return brower 'table' info with dotnet Neo4j.Driver

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

1 REPLY 1

Please disregard, I figured out what I needed
Thanx

Nodes 2022
Nodes
NODES 2022, Neo4j Online Education Summit

All the sessions of the conference are now available online