Neo4j中是否有类似“ eval”的东西?

时间:2019-03-30 15:54:01

标签: neo4j cypher eval

我可以从Neo4j中的字符串评估密码吗?我考虑过类似JavaScript中的eval函数。

1 个答案:

答案 0 :(得分:2)

apoc library将为您提供丰富的工具,可从字符串execute the cypher来帮助您:

call db.labels() yield label
call apoc.cypher.run("match (:`"+label+"`) return count(*) as count", null) yield value
return label, value.count as count