使用python对neo4j中的数据进行查询
1、查询某标签属性的id
2、查询id对应的标签属性
from py2neo import *
from py2neo.matching import *
import json
import pandas as pd
graph = Graph('http://127.0.0.1(这里的IP根据每个人的地址来写):7474', username="用户名", password="密码")
#根据属性查询id successful
#node=NodeMatcher.match('点星病')
matcher = NodeMatcher(graph)
node = matcher.match('别称信息').where(disease_otherName='点星病').first()
node_id = node.identity
print(node_id)
#根据id查找节点 successful
matcher = NodeMatcher(graph)
created_node = matcher[34307]
nodesStr = json.dumps(created_node, ensure_ascii=False)
nodes = json.loads(nodesStr)
print(nodes)