0
在根據功能部分出現了Neo4j的Cypher支架的Refcard(http://docs.neo4j.org/refcard/2.0/)是這樣定義的:Neo4j的暗號toInt功能
toInt({expr})
Converts the given input in an integer if possible; otherwise it returns NULL.
如果我嘗試在Cypher支架控制檯我得到這個:
neo4j-sh (?)$ match (n:Document) return toInt(n.date);
==> SyntaxException: Unknown function 'toInt' (line 1, column 27)
==> "match (n:Document) return toInt(n.date)"
==> ^
neo4j-sh (?)$
(在我的情況n.date是該日期的字符串表示。)
另外在neo4j文檔中沒有提及此功能:http://docs.neo4j.org/chunked/stable/query-function.html。
任何人都可以解決這個難題?
您可以發佈查詢嗎? –
應該在2.1.0-M01中,我認爲有一些版本與refcard混合。 –