Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/README-nodes.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,13 +150,13 @@ channel; they have no data lanes and **bind to an agent** (see
| `db_postgres` | answers, questions → answers, table, text | PostgreSQL and Supabase (insert + NL-to-SQL) |
| `db_mysql` | answers, questions → answers, table, text | MySQL |
| `db_clickhouse` | questions → answers, table, text | ClickHouse (NL-to-SQL) |
| `db_neo4j` | questions → answers, table, text | Neo4j graph database |

### Graph Databases

| Service | Data flow (in → out) | Description |
| ---------------- | -------------------------------- | --------------------------------------------------- |
| `graph_falkordb` | questions → answers, table, text | FalkorDB graph database (NL-to-Cypher, multi-graph) |
| Service | Data flow (in → out) | Description |
| ---------------- | -------------------------------- | ---------------------------------------------------- |
| `graph_falkordb` | questions → answers, table, text | FalkorDB graph database (NL-to-Cypher, multi-graph) |
| `graph_neo4j` | questions → answers, table, text | Neo4j graph database (NL-to-Cypher, READ access) |

### Document Processing

Expand Down
384 changes: 0 additions & 384 deletions nodes/src/nodes/db_neo4j/IGlobal.py

This file was deleted.

431 changes: 0 additions & 431 deletions nodes/src/nodes/db_neo4j/IInstance.py

This file was deleted.

84 changes: 0 additions & 84 deletions nodes/src/nodes/db_neo4j/utils.py

This file was deleted.

4 changes: 2 additions & 2 deletions nodes/src/nodes/graph_falkordb/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ Queries a FalkorDB graph in two ways, and you can use either or both:
It derives from `ai.common.graph.GraphInstanceBase`, the base class shared by every graph
database node: the lane handling, the natural-language-to-Cypher loop and the common tools live
there, so this node only implements what is specific to FalkorDB — the Redis-protocol client,
multi-graph selection, and server-side read-only execution. (`db_neo4j` predates the base class
and is migrated to it separately.)
multi-graph selection, and server-side read-only execution. (`graph_neo4j` derives from the same
base.)

Queries are **read-only by default**: they run through `GRAPH.RO_QUERY`, so the FalkorDB server
itself rejects any write clause (`CREATE`/`MERGE`/`SET`/`DELETE`) — the restriction is enforced
Expand Down
Loading
Loading