I have a request:
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 the nodes that match a query of type User. How to fulfill the same request, but return NodeReferences for each of these agreed users?
source share