Reputation: 211
I am trying to call this query
queryItem = GraphClientInstance()
.Cypher
.Start(...)
.Match(...)
.Where(...)
.With(...)
.OrderByDescending(..)
.Limit(1)
.Match(...)
.Where(...)
.Return(...)
.OrderByDescending(..)
.Limit(..)
.Results;
I know this looks kind of long but this is only way I could get it done. Although Cypher allows it but Neo4jClient does not allow me to add multiple Order By or Limit Clauses. I can break it up but then it will be two server calls. Anyway I can make it in one call with Neo4jClient?
Upvotes: 0
Views: 241