Expand description
Node and edge CRUD operations.
Functionsยง
- append_
edge - Append an edge (INSERT OR IGNORE โ duplicates by ID are skipped).
- append_
edges - Append many edges in a single transaction (INSERT OR IGNORE โ duplicates
by ID or by the
(source, target, relation)unique index are skipped). - delete_
edge - Delete an edge by ID.
- delete_
node - Delete a node by ID. Returns whether a row was deleted.
- list_
node_ ids - List all node IDs.
- read_
edges - Read edges, capped at
limit. - read_
node - Read a single node by ID. Returns
Noneif not found. - read_
nodes - Batch-read multiple nodes by ID.
- read_
nodes_ limited - Read nodes with optional limit, ordered by updated DESC.
- upsert_
node - Insert or replace a node.