我可以在Neo4j中从字符串中评估密码吗?我想像JavaScript中的eval函数。
eval
apoc library将为您提供execute the cypher丰富工具的帮助:
apoc
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