Neo4j

Package: neo4j · 10 nodes · Graph database

Connect to Neo4j, run Cypher queries, and create nodes and relationships in a graph database.

Node Reference

NodeTypeInputsOutputs
Connectstatement-Driver (neo4j.Driver), Session (neo4j.Session)
ClosestatementDriver (neo4j.Driver)-
Run CypherstatementSession (neo4j.Session), Query (str), Params (object)Result (neo4j.Result)
Build Cypherexpression-Query (str)
Create NodestatementSession (neo4j.Session), Properties (object)Node ID (int)
Create RelationshipstatementSession (neo4j.Session), From ID (int), To ID (int), Properties (object)-
DeletestatementSession (neo4j.Session), Query (str)-
Get RecordsexpressionResult (neo4j.Result)Records (list<any>)
Get ValuesexpressionRecords (list<any>)Values (list<any>)
Record CountexpressionRecords (list<any>)Count (int)

Typical Pipeline

Connect → Create Node / Run Cypher → Get Records → Get Values. Always Close when done.