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

# Query Editor

> Cypher editor: run shortcuts, autocomplete, maximize mode, placeholder behavior, and graph-scoped suggestions.

The query editor is a Monaco-based Cypher editor used to run queries against the selected graph.

<img src="https://mintcdn.com/falkordb-core/CURHiDkvs63xihjo/images/browser/query-editor.webp?fit=max&auto=format&n=CURHiDkvs63xihjo&q=85&s=b7e2b897e6cd5fd2752dc0b8d83f1f26" alt="Query editor" width="1581" height="53" data-path="images/browser/query-editor.webp" />

## Running queries

* Click **RUN** to execute.
* Keyboard shortcuts:
  * **Enter**: run query (when the suggestion widget is not open)
  * **Cmd/Ctrl + Enter**: run query
  * **Shift + Enter**: insert a newline

## Query history navigation (keyboard)

When your cursor is on the **first line** or **last line** of the editor:

* **Up arrow**: navigate backward through query history
* **Down arrow**: navigate forward through query history

## Autocomplete & syntax highlighting

The editor provides:

* Cypher keyword suggestions
* Function suggestions
* Graph-scoped suggestions (labels, relationship types, property keys) fetched from the server

## Maximize mode

The maximize button opens a full-screen editor dialog with the same Run/Clear controls.

## Frequently Asked Questions

<AccordionGroup>
  <Accordion title="What keyboard shortcuts are available for running queries?">
    Press **Enter** to run a query (only when the autocomplete suggestion widget is closed) or **Cmd/Ctrl + Enter** to run regardless. Use **Shift + Enter** to insert a newline without executing.
  </Accordion>

  <Accordion title="Does the editor support autocomplete?">
    Yes. The Monaco-based editor provides **Cypher keyword suggestions**, **function suggestions**, and **graph-scoped suggestions** (labels, relationship types, property keys) fetched from the server.
  </Accordion>

  <Accordion title="How do I navigate through previous queries using the keyboard?">
    Place your cursor on the **first line** and press **Up arrow** to go back through history, or on the **last line** and press **Down arrow** to go forward.
  </Accordion>

  <Accordion title="Can I expand the editor to full screen?">
    Yes. Click the **maximize button** to open a full-screen editor dialog with the same Run and Clear controls.
  </Accordion>
</AccordionGroup>
