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

# Metadata View

> Query execution details: metadata text, explain plan tree, and profile output.

The Metadata tab provides query execution details for the current query.

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

## Sections

The UI is split into three main panels:

* **Profile**
  * Runs a profiling request and renders the output as a nested tree.
  * Warning: profiling can be intrusive depending on the database behavior.
* **Metadata**
  * Displays metadata text lines.
* **Explain**
  * Displays explain-plan output as a nested tree.

## When it’s enabled

The Metadata tab is enabled when the current query has metadata/explain content.

## Frequently Asked Questions

<AccordionGroup>
  <Accordion title="What is the difference between Explain and Profile?">
    **Explain** shows the planned execution steps without running the query. **Profile** actually executes the query and shows real performance data including time spent at each step.
  </Accordion>

  <Accordion title="When is the Metadata tab available?">
    The Metadata tab is enabled when the current query has **metadata or explain content** available. It appears alongside the Graph and Table tabs in the results area.
  </Accordion>

  <Accordion title="Is Profile safe to run on production?">
    Be cautious — profiling **actually executes the query** and can be intrusive depending on database behavior and query complexity. Use Explain for a non-invasive execution plan.
  </Accordion>

  <Accordion title="How is the execution plan displayed?">
    Both Explain and Profile output are rendered as a **nested tree** structure, showing the hierarchy of operations in the query execution plan.
  </Accordion>
</AccordionGroup>
