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

# Data / Property Panel

> Inspect and edit node/edge details: ID, labels/relationship type, and property table editing.

The Data panel opens when you select a node or edge in the graph. It’s used to inspect properties and perform edit operations.

<img src="https://mintcdn.com/falkordb-core/CURHiDkvs63xihjo/images/browser/data-panel.webp?fit=max&auto=format&n=CURHiDkvs63xihjo&q=85&s=c98b2b5b5d739edfe196c36350bcb0e9" alt="Data panel" width="217" height="1027" data-path="images/browser/data-panel.webp" />

## What it shows

For the selected element:

* **ID**
* **Attributes count**
* **Labels** (nodes) or **Relationship type** (edges)
* A **properties table** (key/value) for viewing and editing attributes

## Node label management

For nodes (and when the user role is not Read-Only):

* **Add Label**
* **Remove Label** (except the “default” empty label)

Label changes are immediately reflected in:

* The in-app graph model
* The visible canvas node styling
* The graph info panel counts/listing

## Editing properties

Properties are managed via the embedded table component. Typical operations include:

* Editing existing values
* Adding/removing properties

(Exact editing options depend on the table component implementation.)

## Keyboard shortcut

* `Esc` closes the Data panel.

## Frequently Asked Questions

<AccordionGroup>
  <Accordion title="How do I open the Data panel?">
    **Select a node or edge** on the graph canvas by clicking it. The Data panel opens automatically to show the element's properties.
  </Accordion>

  <Accordion title="Can I edit node labels from the Data panel?">
    Yes. For nodes (when you are not a Read-Only user), you can **Add Label** or **Remove Label** directly from the Data panel. Changes are reflected immediately on the canvas.
  </Accordion>

  <Accordion title="How do I close the Data panel?">
    Press **Esc** on your keyboard or click elsewhere on the canvas to deselect the element.
  </Accordion>

  <Accordion title="What information does the Data panel show?">
    It displays the element's **ID**, **attributes count**, **labels** (for nodes) or **relationship type** (for edges), and a **properties table** with all key/value pairs.
  </Accordion>
</AccordionGroup>
