gpt4 book ai didi

python - Neo4j 如何在 python 中访问节点的属性

转载 作者:行者123 更新时间:2023-12-04 00:01:27 24 4
gpt4 key购买 nike

我可以像这样查询图形数据库

from neo4j import GraphDatabase

#establish connection
graphdp = GraphDatabase.driver(uri="bolt://localhost:7687", auth=("neo4j","Python"))

session = graphdp.session()

q1="MATCH (n {id:0}) return n"
nodes = session.run(q1)

for node in nodes:
print(node)

结果是:
<Record n=<Node id=5 labels={'Ubuntu1604'} properties={'host_image': 'qsrf-56fh-3db5-xd4t', 'id': 0}>>
<Record n=<Node id=6 labels={'Ubuntu1804'} properties={'host_image': 'qsrf-56fh-3dd4-44ty', 'id': 0}>>
<Record n=<Node id=7 labels={'Network'} properties={'start': '', 'capability': 'connection', 'cidr': '', 'end': '', 'nameservers': '[10.0.71.254, 8.8.4.4, 8.8.8.8]', 'id': 0}>>
<Record n=<Node id=8 labels={'Port'} properties={'port_ip': '', 'requirement': '["container","connection"]', 'id': 0}>>
<Record n=<Node id=13 labels={'GuestLinuxUser'} properties={'id': 0, 'playbook': 'createLinuxUser'}>>
<Record n=<Node id=16 labels={'GuestWindowsUser'} properties={'id': 0, 'playbook': 'createWindowsUser'}>>

Process finished with exit code 0

如何访问每个节点属性?

最佳答案

您可以保存 BoltStatmentResult 对象数据,然后通过 Node.get() 方法访问节点属性:

q1="MATCH (n {id:0}) return n"
nodes = session.run(q1)
results = [record for record in nodes.data()]

# Now you can access the Node using the key 'n' (defined in the return statement):
res[0]['n'].get('host_image')

我在 nodes.data() 迭代中将元素命名为“record”,因为如果您的 RETURN 返回了多个项目,则记录 != node。它是 RETURN 中项目的字典。

然后您可以访问节点数据类型的任何方法,这里是 docs reference

例如:
node = res[0]['n']
labels = list(node.labels)

关于python - Neo4j 如何在 python 中访问节点的属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60523942/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com