我正在尝试运行参数为列表的查询:
codes = ["123","234"]
query = graph.run("""
MATCH (n:NAME)
where n.codes = "{}"
RETURN return n.commonName as commonName""".format(codes))
我尝试将“codes”作为参数传递给Neo4j查询。这会引发“list is not readable in the query”(列表在查询中不可读)的错误
如有任何建议,我们将不胜感激。
1条答案
按热度按时间yeotifhr1#
您可以使用下面的代码,我正在使用我的测试: