Python API Reference¶
Complete reference for the grafeo Python package.
Installation¶
Quick Start¶
import grafeo
db = grafeo.Database()
with db.session() as session:
session.execute("INSERT (:Person {name: 'Alice'})")
Classes¶
| Class | Description |
|---|---|
| Database | Database connection and management |
| Node | Graph node representation |
| Edge | Graph edge representation |
| QueryResult | Query result iteration |
| Transaction | Transaction management |