在Neo4j中有“eval”吗?

问题描述 投票:0回答:1

我可以在Neo4j中从字符串中评估密码吗?我想像JavaScript中的eval函数。

neo4j cypher eval
1个回答
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
© www.soinside.com 2019 - 2024. All rights reserved.