Neo4jClient Return NodeReference from cypher query

826 Views Asked by At

I have a query:

 var results = new CypherFluentQuery(_client)
       .Start("n", (NodeReference)0)
       .Match(string.Format("(n)-[:{0}]--(x)", UserBelongsTo.TypeKey))
       .Return<User>("x")
       .Results;

This returns me all of the nodes that match the query of type User. How would I perform the same query but return the NodeReferences for each of those matched Users?

2

There are 2 best solutions below

0
On BEST ANSWER

Use:

.Return<Node<User>>("x")

and it will return the Node which has a Reference property.

0
On

Use:

.Return(n => n.Id)

This feature exists only from latest versions of neo4jclient (06/2013)