> ## Documentation Index
> Fetch the complete documentation index at: https://docs.falkordb.com/llms.txt
> Use this file to discover all available pages before exploring further.

> ## Agent Instructions
> FalkorDB is a graph database that speaks the Redis protocol. Queries are issued as OpenCypher through the GRAPH.QUERY and GRAPH.RO_QUERY commands, not over Bolt or a SQL connection.
> FalkorDB implements a subset of OpenCypher with proprietary extensions. Do not assume Neo4j-only syntax or procedures are available — check /cypher/cypher-support and /cypher/known-limitations before using a clause.
> FalkorDB is the successor to RedisGraph, but they are separate products. Do not present RedisGraph commands, versions, or limitations as current FalkorDB behavior.
> Use the official clients listed in /getting-started/clients rather than generic Redis or Neo4j drivers, and prefer the language the user is already working in.
> Configuration parameters are set with GRAPH.CONFIG SET or at startup; cite the exact parameter name from /getting-started/configuration rather than inventing one.
> This site covers four products: FalkorDB (core), FalkorDB Cloud, FalkorDB Enterprise, and the GraphRAG SDK. Name which one an answer applies to, since setup and operations differ.

# Browser

> FalkorDB Browser web UI for visualizing graphs, running Cypher queries, exploring data models, managing nodes and relationships, with query history and API documentation.

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.

<img src="https://mintcdn.com/falkordb-core/CURHiDkvs63xihjo/images/browser/overview.webp?fit=max&auto=format&n=CURHiDkvs63xihjo&q=85&s=fa449b71f94807a57a4a7841e755c178" alt="Browser overview" width="1600" height="1000" data-path="images/browser/overview.webp" />

The screenshots in this section use a realistic demo graph so the UI reads like a working product environment instead of a toy fixture.

***

## UI elements

For detailed documentation of each major UI element (login, settings, graph canvas, panels, query editor/history, table view, etc.), see:

* [UI Elements](/browser/ui)
* [Upload Data dialog](/browser/ui/upload-data)
* [UDF Libraries page](/browser/ui/udf-libraries)

## Canvas Component

FalkorDB Canvas is the standalone web component that powers the graph visualization in FalkorDB Browser. It can also be used independently in any web application.

* [Canvas](/browser/canvas)

***

## Main Features

Use these focused pages for detailed coverage without duplication:

| Area                                                             | Documentation                                       |
| :--------------------------------------------------------------- | :-------------------------------------------------- |
| Graph workspace (canvas, panels, querying, history, and results) | [UI Elements](/browser/ui)                          |
| Graph lifecycle actions (create/delete/duplicate/export/upload)  | [Graphs Manager](/browser/ui/graph-management)      |
| Built-in REST API docs (`/docs`)                                 | [API Docs (Swagger)](/browser/ui/api-documentation) |
| Authentication and role-based permissions                        | [Roles & Access](/browser/ui/auth-access-control)   |
| Upload workflows                                                 | [Upload Data dialog](/browser/ui/upload-data)       |
| UDF library workflows                                            | [UDF Libraries page](/browser/ui/udf-libraries)     |

## Frequently Asked Questions

<AccordionGroup>
  <Accordion title="How do I access FalkorDB Browser?">
    FalkorDB Browser is a web UI accessible at **port 3000** by default. It is included in the main FalkorDB Docker container and is also available through the Cloud service.
  </Accordion>

  <Accordion title="What connection URLs does FalkorDB Browser support?">
    The Browser supports `falkor://`, `falkors://`, `redis://`, and `rediss://` URL formats for connecting to a FalkorDB server.
  </Accordion>

  <Accordion title="Can I export my graph data from the Browser?">
    Yes. Navigate to graph management, select a graph, and click **Export Data** to download a `.dump` file via the `/api/graph/:graph/export` endpoint.
  </Accordion>

  <Accordion title="What query language does FalkorDB Browser use?">
    FalkorDB Browser uses **Cypher** as its query language. The built-in Monaco editor provides keyword autocompletion and syntax highlighting.
  </Accordion>

  <Accordion title="Is there an API documentation page built into the Browser?">
    Yes. A built-in Swagger UI is available at `/docs` which loads the OpenAPI spec from `/api/swagger` and supports interactive 'Try it out' requests.
  </Accordion>
</AccordionGroup>
