Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
here で説明されているように、クエリごとに Neo4jClient で Cypher パーサーのバージョンを指定する方法はありますか?
ありがとう!
Neo4jClient を最新 (> 1.0.0.604) に更新すると、次のように使用する「ParserVersion」メソッドにアクセスできます。
client.Cypher .ParserVersion(1,9) .Start( new {n = All.Nodes} ) .Return<object>("n")
暗号を作成するもの:
CYPHER 1.9 START n = nodes(*) RETURN n
1.9 未満のバージョンを使用している場合は、CYPHER LEGACY代わりに開始されます。
CYPHER LEGACY