Neo4j
Package: neo4j · 10 nodes · Graph database
Connect to Neo4j, run Cypher queries, and create nodes and relationships in a graph database.
Node Reference
| Node | Type | Inputs | Outputs |
|---|---|---|---|
| Connect | statement | - | Driver (neo4j.Driver), Session (neo4j.Session) |
| Close | statement | Driver (neo4j.Driver) | - |
| Run Cypher | statement | Session (neo4j.Session), Query (str), Params (object) | Result (neo4j.Result) |
| Build Cypher | expression | - | Query (str) |
| Create Node | statement | Session (neo4j.Session), Properties (object) | Node ID (int) |
| Create Relationship | statement | Session (neo4j.Session), From ID (int), To ID (int), Properties (object) | - |
| Delete | statement | Session (neo4j.Session), Query (str) | - |
| Get Records | expression | Result (neo4j.Result) | Records (list<any>) |
| Get Values | expression | Records (list<any>) | Values (list<any>) |
| Record Count | expression | Records (list<any>) | Count (int) |
Typical Pipeline
Connect → Create Node / Run Cypher → Get Records → Get Values. Always Close when done.