单个Neo4jClient Cypher Call中的Multiple Limit / Order By子句

时间:2013-08-14 22:03:52

标签: neo4jclient

我正在尝试调用此查询

queryItem = GraphClientInstance()
                 .Cypher
                 .Start(...)
                 .Match(...)
                 .Where(...)
                 .With(...)
                 .OrderByDescending(..)
                 .Limit(1)
                 .Match(...)
                 .Where(...)
                 .Return(...)
                 .OrderByDescending(..)
                 .Limit(..)
                 .Results;

我知道这看起来有点长,但这只是我能完成它的方式。虽然Cypher允许但是Neo4jClient不允许我添加多个Order By或Limit子句。我可以分解它,但那将是两个服务器调用。无论如何,我可以使用Neo4jClient进行一次通话吗?

1 个答案:

答案 0 :(得分:1)

已修复于2013年9月4日发布的1.0.0.593及更高版本。