mirror of
https://github.com/hwchase17/langchain
synced 2024-11-18 09:25:54 +00:00
14 lines
262 B
Python
14 lines
262 B
Python
|
from langchain.graphs import Neo4jGraph
|
||
|
|
||
|
graph = Neo4jGraph()
|
||
|
|
||
|
graph.query(
|
||
|
"""
|
||
|
MERGE (m:Movie {name:"Top Gun"})
|
||
|
WITH m
|
||
|
UNWIND ["Tom Cruise", "Val Kilmer", "Anthony Edwards", "Meg Ryan"] AS actor
|
||
|
MERGE (a:Actor {name:actor})
|
||
|
MERGE (a)-[:ACTED_IN]->(m)
|
||
|
"""
|
||
|
)
|