> ## 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.

# Graphs Manager

> Create, delete, duplicate, export, and upload graph data from FalkorDB Browser.

Graphs Manager is where you control graph lifecycle actions from one dialog.

## Supported actions

| Action          | Description                                                                                               |
| :-------------- | :-------------------------------------------------------------------------------------------------------- |
| Create graph    | Create a new graph from the UI.                                                                           |
| Delete graph    | Delete one or more selected graphs.                                                                       |
| Duplicate graph | Create a copy of an existing graph, including data.                                                       |
| Export graph    | Download a `.dump` file through `/api/graph/{graph}/export`. Replace `{graph}` with the graph identifier. |
| Upload data     | Open the Upload Data flow for file-based or query-based imports.                                          |

## Related pages

* [Upload Data dialog](/browser/ui/upload-data)
* [Graph page (overall layout)](/browser/ui/graph-page)

## Frequently Asked Questions

<AccordionGroup>
  <Accordion title="Can I export graph data from Graphs Manager?">
    Yes. Select a graph and use Export to download a `.dump` file via `/api/graph/{graph}/export`, replacing `{graph}` with the graph identifier.
  </Accordion>

  <Accordion title="Can I duplicate a graph including all data?">
    Yes. Duplicate creates a new graph copy from the selected source graph.
  </Accordion>

  <Accordion title="Can I remove multiple graphs in one flow?">
    Yes. Graph deletion supports multi-selection when multiple graphs are selected.
  </Accordion>
</AccordionGroup>
