neo4j cypher toInt功能

时间:2014-02-24 10:31:39

标签: neo4j cypher

在函数部分下的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

任何人都可以解决这个难题吗?

1 个答案:

答案 0 :(得分:1)

在2.0.1版本中尚未添加

toInt和toFloat。请查看此link。{第28行}已计划以2.0.2发布