代码拉取完成,页面将自动刷新
from neo4j import GraphDatabase
import json
# 1. China_中国大陆 地区的电影
def find_movies_in_district(tx, district):
res = tx.run("MATCH (m:Movie)-[:DISTRICT_OF]->(d:District {name: $district}) RETURN m",
{"district": district})
for it in res.records():
print(it.get('m')._properties.get('title'))
if __name__ == '__main__':
driver = GraphDatabase.driver("bolt://localhost:7687", auth=("neo4j", "123456"))
with driver.session() as session:
# 1. 剧情 类 电影
category = "剧情"
res = session.run("MATCH (m:Movie)-[:CATEGORY_OF]->(c:Category {name: $category}) RETURN m",
{"category": category})
for it in res.records():
print(it)
# print(it._properties)
# print(it._labels)
# print(it._id)
# print(sin[0].graph.nodes)
# print(sin[0].graph.relationships)
driver.close()
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。