在函数部分下的neo4j Cypher refcard(http://docs.neo4j.org/refcard/2.0/)中有这样的定义:
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。
任何人都可以解决这个难题吗?