You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FalkorDB Browser is a web UI for exploring, querying, and managing FalkorDB graphs.
10
-
It allows a developer to interact with graphs loaded to FalkorDB, explore how specific queries behave and review the current data model.
11
-
FalkorDB Browser is integrated within the main falkordb docker, and through the Cloud service as well.
8
+
# FalkorDB Graph Visualization Tool (Browser)
9
+
FalkorDB's Browser provides a web UI for exploring, querying, and managing FalkorDB graphs. It allows developers to interact with graphs loaded to FalkorDB, explore how specific queries behave, and review the current data model. FalkorDB Browser integrates within the main FalkorDB Docker container and through the Cloud service.
| Interactive graph canvas | Visualizes query results containing nodes and edges as an interactive graph. Supports pan, zoom, and interaction with nodes and relationships. Toggles visibility by labels and relationship types. |
21
+
| Element search (in-canvas search) | Search nodes and edges by node properties (string prefix match), IDs, relationship type, and labels. Jump to, zoom to, and select the match. |
22
+
| Data and inspection panel | Selecting an element opens a side panel for inspecting its properties. This panel supports editing workflows (see "Data manipulation"). |
23
+
| Entity Creation Tools | Add a node, an edge, or both to the current graph from the canvas view. |
34
24
35
25
### Querying
36
-
-**Cypher query editor (Monaco)**
37
-
- Editor-style experience for writing Cypher.
38
-
- Keyboard shortcuts include:
39
-
- Run: `Enter` (and `Cmd/Ctrl + Enter` in the query-history editor)
40
-
- Insert newline: `Shift + Enter`
41
-
- Includes Cypher keyword/function completion (based on the Browser’s built-in lists).
| Cypher query editor (Monaco) | The editor-style experience for writing Cypher includes keyboard shortcuts: Run (Enter and Cmd/Ctrl + Enter in the query-history editor) and Insert newline (Shift + Enter). The editor includes Cypher keyword and function completion based on the Browser's built-in lists. |
29
+
| Results views | Graph view for node and edge results. Table view for tabular results. |
30
+
| Query metadata | The Metadata tab shows query metadata text, explain plan (rendered as a nested tree), and profile output (rendered as a nested tree). |
50
31
51
32
### Query history
52
-
-**Persistent query history** stored in browser `localStorage`.
53
-
-**History browser dialog**
54
-
- Search and filter previous queries.
55
-
- Filter by graph name.
56
-
- Delete single queries, multi-select delete, or “delete all”.
57
-
-**Per-query metadata**
58
-
- Review metadata / explain / profile for past queries.
| Persistent query history | Stores in browser localStorage. |
36
+
| History browser dialog | Allows you to search and filter previous queries, filter by graph name, and delete single queries, multi-select delete, or delete all queries. |
37
+
| Per-query metadata | Review metadata, explain, and profile for past queries. |
| Create and delete operations | Create node and create relationship flows from the Graph UI. Delete elements (node or relationship) from the Graph UI. |
45
+
| Edit labels | Edit labels through API routes (the UI provides label management components). |
| Duplicate graphs | Create a copy of an existing graph (including data). |
53
+
| Export graphs | Download a .dump file via the Browser (/api/graph/:graph/export). |
54
+
| Upload data | Upload data through the "Upload Data" dialog, which supports drag-and-drop file selection (Dropzone UI). |
76
55
77
56
### Graph Info panel
78
-
-**Memory Usage tracking** Exposes current memory utilization of the graph in MB.
79
-
-**Node Label tracking** View all node labels in the graph, control style visualization for labels. Click on a node label to trigger a query to visualize nodes from this label.
80
-
-**Edge Type tracking** View all edge types in the graph. Click on an edge type to trigger a graph query showing only nodes connected through this edge type.
81
-
-**Property Keys tracking** View all property keys in the graph. Click on a key to issue a query that shows nodes and edges where the property exists (not NULL).
| Memory Usage tracking | Exposes current memory utilization of the graph in MB. |
60
+
| Node Label tracking | Displays all node labels in the graph and controls style visualization for labels. Click on a node label to trigger a query that visualizes nodes from this label. |
61
+
| Edge Type tracking | Displays all edge types in the graph. Click on an edge type to trigger a graph query showing only nodes connected through this edge type. |
62
+
| Property Keys tracking | Displays all property keys in the graph. Click on a key to issue a query that shows nodes and edges where the property exists (not NULL). |
| Built-in Swagger UI | Available at /docs. Loads the Browser's OpenAPI spec from /api/swagger. "Try it out" enabled. Adds an X-JWT-Only: true header when calling endpoints from Swagger UI. |
| Browser settings | Query execution defaults and limits: timeout, result limit, run default query on load. User experience: content persistence (auto-save and restore), display-text priority (controls which node property appears as the node caption). Graph info refresh interval. Tutorial replay. |
85
+
| DB configurations (Admin) | View and update server configuration values. Some runtime configurations remain read-only. |
86
+
| Users (Admin) | List users and adjust roles. Add and delete users. |
87
+
| Personal Access Tokens | Generate tokens (with optional expiration). Tokens appear once at creation (copy-to-clipboard UX). Revoke existing tokens. |
88
+
<!--
122
89
### Optional “Chat” (English → Cypher)
123
90
If enabled, the Browser includes a **Chat panel** that streams responses from a text-to-cypher service.
124
91
- The UI sends messages to `/api/chat` and processes server-sent events.
125
92
- Chat configuration lives in Settings (model + secret key).
126
93
- The chat backend URL is controlled by `CHAT_URL`.
94
+
-->
95
+
96
+
---
127
97
128
-
## Common workflows
129
-
### 1) Run a query and visualize results
130
-
1. Go to **Graphs** and select a graph.
131
-
2. Write a Cypher query in the editor.
132
-
3. Run it.
133
-
4. Inspect results in:
134
-
-**Graph** tab (interactive canvas), or
135
-
-**Table** tab (rows/columns).
136
-
5. Use **Labels/Relationships toggles** to focus the canvas.
137
-
138
-
### 2) Inspect and edit an element
139
-
1. Click a node/edge in the canvas.
140
-
2. Use the **Data panel** to inspect properties.
141
-
3. Use create/delete actions as needed.
142
-
143
-
### 3) Use query history
144
-
1. Open **Query History**.
145
-
2. Filter by graph, search, and select a previous query.
0 commit comments