# FalkorDB Docs > Official FalkorDB documentation — the high-performance graph database for GraphRAG, Cypher queries, and knowledge graphs powering accurate GenAI applications. > ## 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. ## Docs - [FalkorDB](https://docs.falkordb.com/index.md): Official FalkorDB documentation — the high-performance graph database for GraphRAG, Cypher queries, and knowledge graphs powering accurate GenAI applications. - [Data types](https://docs.falkordb.com/datatypes.md): FalkorDB supports a number of distinct data types, some of which can be persisted as property values and some of which are ephemeral. - [Support](https://docs.falkordb.com/support.md): How to contact FalkorDB support, open a support ticket, and get help with your FalkorDB deployment. - [Getting Started](https://docs.falkordb.com/getting-started/index.md): Getting Started with FalkorDB Graph Database. - [Configuration](https://docs.falkordb.com/getting-started/configuration.md): Configure FalkorDB with Redis settings and module parameters for threads, cache, timeouts, query limits, and persistence. Adjust settings at load-time or runtime. - [Client Libraries](https://docs.falkordb.com/getting-started/clients.md): Official FalkorDB client libraries for Python, Node.js, Java, Rust, Go, PHP, and C# with Object-Graph Mapping (OGM) support for Spring Data, and additional community clients. - [Cypher Language](https://docs.falkordb.com/cypher/index.md): Complete Cypher query language reference for FalkorDB including clauses (MATCH, CREATE, DELETE), functions, procedures, algorithms, and indexing for graph queries. - [MATCH](https://docs.falkordb.com/cypher/match.md): Match describes the relationship between queried entities, using ascii art to represent pattern(s) to match against. - [OPTIONAL MATCH](https://docs.falkordb.com/cypher/optional-match.md): The OPTIONAL MATCH clause is a MATCH variant that produces null values for elements that do not match successfully, rather than the all-or-nothing logic for patterns in MATCH clauses. - [WHERE](https://docs.falkordb.com/cypher/where.md): Optional clause used to filter results based on predicates. - [RETURN](https://docs.falkordb.com/cypher/return.md): Define result-set properties with the RETURN clause in Cypher queries. Support for DISTINCT, aggregations (COUNT, SUM, AVG), and implicit GROUP BY functionality. - [ORDER BY](https://docs.falkordb.com/cypher/order-by.md): Order by specifies that the output be sorted and how. - [SKIP](https://docs.falkordb.com/cypher/skip.md): The optional skip clause allows a specified number of records to be omitted from the result set. - [LIMIT](https://docs.falkordb.com/cypher/limit.md): Can use the limit clause to limit the number of records returned by a query - [CREATE](https://docs.falkordb.com/cypher/create.md): Use the CREATE clause to add new nodes and relationships to FalkorDB graphs. Create single or multiple entities, set properties and labels, and build complete graph patterns. - [DELETE](https://docs.falkordb.com/cypher/delete.md): Use the DELETE clause to remove nodes and relationships from FalkorDB graphs. Deleting a node automatically removes all its incoming and outgoing relationships. - [SET](https://docs.falkordb.com/cypher/set.md): SET is used to create or update properties on nodes and relationships. - [MERGE](https://docs.falkordb.com/cypher/merge.md): The MERGE clause ensures that a path exists in the graph (either the path already exists, or it needs to be created). - [WITH](https://docs.falkordb.com/cypher/with.md): The WITH clause allows parts of queries to be independently executed and have their results handled uniquely. - [UNION](https://docs.falkordb.com/cypher/union.md): Combine results from multiple Cypher queries using the UNION clause. Use UNION ALL to keep all rows or UNION to remove duplicates from the combined result set. - [UNWIND](https://docs.falkordb.com/cypher/unwind.md): The UNWIND clause breaks down a given list into a sequence of records; each contains a single element in the list. - [FOREACH](https://docs.falkordb.com/cypher/foreach.md): The FOREACH clause feeds the components of a list to a sub-query comprised of updating clauses only - [CALL](https://docs.falkordb.com/cypher/call.md): The CALL {} (subquery) clause allows local execution of subqueries, which opens the door for many comfortable and efficient actions on a graph. - [LOAD CSV](https://docs.falkordb.com/cypher/load-csv.md): Load CSV files into FalkorDB with LOAD CSV clause for data import. Supports local files, remote HTTPS URLs, headers, custom delimiters, and batch processing. - [Functions](https://docs.falkordb.com/cypher/functions.md): Complete reference for Cypher functions in FalkorDB including predicate, scalar, aggregating, list, mathematical, string, type conversion, node, path, and vector functions. - [Procedures](https://docs.falkordb.com/cypher/procedures.md): Calling procedures using CALL and YIELD. - [Indexing](https://docs.falkordb.com/cypher/indexing/index.md): FalkorDB supports single-property indexes for node labels and for relationship type. String, numeric, and geospatial data types can be indexed. - [Range Index](https://docs.falkordb.com/cypher/indexing/range-index.md): Range indexes accelerate equality, range, and geospatial queries on node and relationship properties. Supported data types include strings, numbers, geospatial points, and scalar arrays. - [Full-text Index](https://docs.falkordb.com/cypher/indexing/fulltext-index.md): FalkorDB provides full-text indices through procedure calls and DDL syntax. - [Vector Index](https://docs.falkordb.com/cypher/indexing/vector-index.md): FalkorDB supports vector indexes for similarity search on vector embeddings, essential for AI and machine learning applications. - [Cypher coverage](https://docs.falkordb.com/cypher/cypher-support.md): FalkorDB implements a subset of the Cypher language, which is growing as development continues. - [REMOVE](https://docs.falkordb.com/cypher/remove.md): REMOVE is used to remove attributes from node and relationships, in addition to removing labels from nodes. - [Known limitations](https://docs.falkordb.com/cypher/known-limitations.md): FalkorDB Known limitations - [Algorithms](https://docs.falkordb.com/algorithms/index.md): Explore FalkorDB's high-performance graph algorithms including pathfinding (BFS, shortest path), centrality measures (PageRank, betweenness), and community detection (WCC, CDLP). - [BFS](https://docs.falkordb.com/algorithms/bfs.md): Breadth-First Search (BFS) explores a graph level by level, visiting all neighbors of a node before moving to the next depth. - [Betweenness Centrality](https://docs.falkordb.com/algorithms/betweenness-centrality.md): Measures the importance of nodes based on the number of shortest paths that pass through them. - [Community Detection using Label Propagation (CDLP)](https://docs.falkordb.com/algorithms/cdlp.md): Detect communities in graphs using Label Propagation (CDLP) algorithm. Identifies densely connected clusters in social networks, biological systems, and web structures. - [PageRank](https://docs.falkordb.com/algorithms/pagerank.md): Rank nodes based on the number and quality of edges pointing to them, simulating the likelihood of a random traversal landing on each node. - [algo.SPpaths](https://docs.falkordb.com/algorithms/sppath.md): Find shortest paths between two nodes with advanced cost and length constraints. - [algo.SSpaths](https://docs.falkordb.com/algorithms/sspath.md): Explore all shortest paths from a single source node with weight, cost, and length constraints. - [Weakly Connected Components (WCC)](https://docs.falkordb.com/algorithms/wcc.md): Weakly Connected Components (WCC) - [Harmonic Centrality](https://docs.falkordb.com/algorithms/harmonic-centrality.md): Measures node importance by summing inverse shortest-path distances to all reachable nodes, making it robust on disconnected graphs. - [Max Flow](https://docs.falkordb.com/algorithms/maxflow.md): Max Flow - [MSF](https://docs.falkordb.com/algorithms/msf.md): Minimum Spanning Forest Algorithm - [UDFs](https://docs.falkordb.com/udfs/index.md): Learn how to extend FalkorDB with custom User Defined Functions (UDFs) written in JavaScript. - [FLEX Function Reference](https://docs.falkordb.com/udfs/flex/index.md): Reference for FLEX, FalkorDB's open-source community UDF package with text, date, JSON, map, collection, bitwise, and similarity utilities. - [Bitwise Functions](https://docs.falkordb.com/udfs/flex/bitwise/index.md): FLEX bitwise functions for performing AND, OR, XOR, NOT, and bit shift operations on integers in Cypher queries. - [bitwise.and](https://docs.falkordb.com/udfs/flex/bitwise/and.md): Performs a bitwise AND operation on two integers, returning 1 for each bit position where both operands have a 1. - [bitwise.not](https://docs.falkordb.com/udfs/flex/bitwise/not.md): Performs a bitwise NOT (one's complement) on an integer, inverting all bits. - [bitwise.or](https://docs.falkordb.com/udfs/flex/bitwise/or.md): Performs a bitwise OR operation on two integers, returning 1 for each bit position where at least one operand has a 1. - [bitwise.shiftLeft](https://docs.falkordb.com/udfs/flex/bitwise/shiftLeft.md): Shifts all bits of an integer to the left by a specified number of positions, filling vacated positions with zeros. - [bitwise.shiftRight](https://docs.falkordb.com/udfs/flex/bitwise/shiftRight.md): Performs a sign-propagating right bit shift, moving all bits right by a specified number of positions. - [bitwise.xor](https://docs.falkordb.com/udfs/flex/bitwise/xor.md): Performs a bitwise XOR operation on two integers, returning 1 for each bit position where the operands differ. - [Collection Functions](https://docs.falkordb.com/udfs/flex/collections/index.md): FLEX collection functions for set operations, frequency analysis, and list manipulation in Cypher queries. - [coll.frequencies](https://docs.falkordb.com/udfs/flex/collections/frequencies.md): Counts the frequency of each element in a list, returning a map of elements to their occurrence counts. - [coll.intersection](https://docs.falkordb.com/udfs/flex/collections/intersection.md): Returns a list of elements that appear in both input lists. - [coll.shuffle](https://docs.falkordb.com/udfs/flex/collections/shuffle.md): Returns a randomly shuffled copy of a list using the Fisher-Yates algorithm. - [coll.union](https://docs.falkordb.com/udfs/flex/collections/union.md): Returns a list of all unique elements from both input lists, treating them as sets. - [coll.zip](https://docs.falkordb.com/udfs/flex/collections/zip.md): Combines two lists element-by-element into a list of pairs, stopping at the shorter list's length. - [Date Functions](https://docs.falkordb.com/udfs/flex/date/index.md): FLEX date functions for formatting, parsing, truncating, and converting date/time values in Cypher queries. - [date.format](https://docs.falkordb.com/udfs/flex/date/format.md): Formats a date/time value using a token-based pattern, with optional timezone offset adjustment. - [date.parse](https://docs.falkordb.com/udfs/flex/date/parse.md): Parses a date/time string into a Date object using an optional format pattern. - [date.toTimeZone](https://docs.falkordb.com/udfs/flex/date/toTimeZone.md): Converts a date/time instant to the equivalent wall clock time in a specified timezone offset. - [date.truncate](https://docs.falkordb.com/udfs/flex/date/truncate.md): Truncates a date/time to the specified unit (year, month, day, etc.), zeroing out all smaller units. - [JSON Functions](https://docs.falkordb.com/udfs/flex/json/index.md): FLEX JSON functions for serializing values to JSON strings and parsing JSON strings into maps or lists. - [json.fromJsonList](https://docs.falkordb.com/udfs/flex/json/fromJsonList.md): Parses a JSON string and returns it as a list, returning an empty list on parse errors. - [json.fromJsonMap](https://docs.falkordb.com/udfs/flex/json/fromJsonMap.md): Parses a JSON string and returns it as a map, returning an empty map on parse errors. - [json.toJson](https://docs.falkordb.com/udfs/flex/json/toJson.md): Serializes a value (object, array, string, number, boolean, or null) to a JSON string. - [Map Functions](https://docs.falkordb.com/udfs/flex/map/index.md): FLEX map functions for creating, merging, filtering, and transforming map values in Cypher queries. - [map.fromPairs](https://docs.falkordb.com/udfs/flex/map/fromPairs.md): Converts a list of [key, value] pairs into a map. - [map.merge](https://docs.falkordb.com/udfs/flex/map/merge.md): Performs a shallow merge of multiple maps, with later map values overriding earlier ones on key conflicts. - [map.removeKey](https://docs.falkordb.com/udfs/flex/map/removeKey.md): Returns a copy of a map with a single specified key removed. - [map.removeKeys](https://docs.falkordb.com/udfs/flex/map/removeKeys.md): Returns a copy of a map with multiple specified keys removed. - [map.submap](https://docs.falkordb.com/udfs/flex/map/submap.md): Creates a new map containing only the specified keys from the input map. - [Similarity Functions](https://docs.falkordb.com/udfs/flex/similarity/index.md): FLEX similarity functions for measuring resemblance between sets and strings. - [sim.jaccard](https://docs.falkordb.com/udfs/flex/similarity/jaccard.md): Computes the Jaccard similarity coefficient between two lists, returning a score between 0 (no overlap) and 1 (identical sets). - [Text Functions](https://docs.falkordb.com/udfs/flex/text/index.md): FLEX text functions for case conversion, string formatting, padding, searching, and similarity metrics in Cypher queries. - [text.camelCase](https://docs.falkordb.com/udfs/flex/text/camelCase.md): Converts a string to camelCase format, capitalizing the first letter of each word except the first. - [text.capitalize](https://docs.falkordb.com/udfs/flex/text/capitalize.md): Converts the first character of a string to uppercase, leaving the remainder unchanged. - [text.decapitalize](https://docs.falkordb.com/udfs/flex/text/decapitalize.md): Converts the first character of a string to lowercase, leaving the remainder unchanged. - [text.format](https://docs.falkordb.com/udfs/flex/text/format.md): Formats a string by replacing numbered placeholders {0}, {1}, etc. with values from a parameters array. - [text.indexOf](https://docs.falkordb.com/udfs/flex/text/indexOf.md): Finds the index of the first occurrence of a substring in a string, with optional range constraints. - [text.indexesOf](https://docs.falkordb.com/udfs/flex/text/indexesOf.md): Returns an array of all positions where a substring occurs in a string, with optional range constraints. - [text.jaroWinkler](https://docs.falkordb.com/udfs/flex/text/jaroWinkler.md): Computes the Jaro-Winkler similarity between two strings, returning a value between 0 (no similarity) and 1 (exact match). - [text.join](https://docs.falkordb.com/udfs/flex/text/join.md): Joins an array of strings into a single string using a specified delimiter. - [text.levenshtein](https://docs.falkordb.com/udfs/flex/text/levenshtein.md): Computes the Levenshtein edit distance between two strings, useful for fuzzy matching and spell checking. - [text.lpad](https://docs.falkordb.com/udfs/flex/text/lpad.md): Pads the left side of a string with a specified character until it reaches a desired length. - [text.regexGroups](https://docs.falkordb.com/udfs/flex/text/regexGroups.md): Extracts all regex matches and capture groups from a string, returning a nested array of results. - [text.repeat](https://docs.falkordb.com/udfs/flex/text/repeat.md): Returns a string repeated a specified number of times. - [text.replace](https://docs.falkordb.com/udfs/flex/text/replace.md): Replaces all occurrences of a regex pattern in a string with a replacement string. - [text.rpad](https://docs.falkordb.com/udfs/flex/text/rpad.md): Pads the right side of a string with a specified character until it reaches a desired length. - [text.snakeCase](https://docs.falkordb.com/udfs/flex/text/snakeCase.md): Converts a string to snake_case format, separating words with underscores and lowercasing all characters. - [text.swapCase](https://docs.falkordb.com/udfs/flex/text/swapCase.md): Swaps the case of every character in a string — uppercase becomes lowercase and vice versa. - [text.upperCamelCase](https://docs.falkordb.com/udfs/flex/text/upperCamelCase.md): Converts a string to UpperCamelCase (PascalCase) format, capitalizing the first letter of every word. - [Commands](https://docs.falkordb.com/commands/index.md): Commands overview - [GRAPH.QUERY](https://docs.falkordb.com/commands/graph.query.md): Executes the given query against a specified graph - [GRAPH.RO_QUERY](https://docs.falkordb.com/commands/graph.ro-query.md): Executes a given read only query against a specified graph - [GRAPH.DELETE](https://docs.falkordb.com/commands/graph.delete.md): Completely remove a graph and all its entities (nodes and relationships) from FalkorDB using the GRAPH.DELETE command with examples for multiple programming languages. - [GRAPH.EXPLAIN](https://docs.falkordb.com/commands/graph.explain.md): Returns a query execution plan without running the query - [GRAPH.LIST](https://docs.falkordb.com/commands/graph.list.md): Lists all graph keys in the keyspace - [GRAPH.PROFILE](https://docs.falkordb.com/commands/graph.profile.md): Executes a query and returns an execution plan augmented with metrics for each operation's execution - [GRAPH.CONFIG-SET](https://docs.falkordb.com/commands/graph.config-set.md): Updates a FalkorDB configuration - [GRAPH.CONSTRAINT DROP](https://docs.falkordb.com/commands/graph.constraint-drop.md): Deletes a constraint from specified graph - [GRAPH.COPY](https://docs.falkordb.com/commands/graph.copy.md): Creates a copy of the given graph - [GRAPH.INFO](https://docs.falkordb.com/commands/graph.info.md): Returns information and statistics about the current executing commands - [GRAPH.MEMORY](https://docs.falkordb.com/commands/graph.memory.md): The GRAPH.MEMORY USAGE command returns detailed memory usage statistics for the specified graph. This command provides insight into how much memory is used by various internal data structures such as nodes, edges, schemas, and indices. It enables users to analyze memory consumption at the graph leve… - [ACL](https://docs.falkordb.com/commands/acl.md): Managing Access Control Lists, enabling administrators to control user permissions at a granular level - [GRAPH.CONFIG-GET](https://docs.falkordb.com/commands/graph.config-get.md): Retrieve FalkorDB configuration parameters with GRAPH.CONFIG-GET command. Query specific settings or use '*' to get all configuration values for threads, timeouts, and limits. - [GRAPH.CONSTRAINT CREATE](https://docs.falkordb.com/commands/graph.constraint-create.md): Create mandatory and unique constraints on FalkorDB graphs to enforce data integrity. Guarantee property existence and value uniqueness for nodes and relationships. - [GRAPH.SLOWLOG](https://docs.falkordb.com/commands/graph.slowlog.md): View the 10 slowest queries executed against a FalkorDB graph with GRAPH.SLOWLOG command. Monitor query performance, execution times, and optimize slow operations. - [Operations](https://docs.falkordb.com/operations/index.md): Learn how to configure, deploy, and manage FalkorDB in production environments with Docker, persistence, replication, clustering, and Kubernetes support. - [Migration](https://docs.falkordb.com/operations/migration/index.md): Migrate data to FalkorDB from RedisGraph, Neo4j, Kuzu, RDF-based systems, and online SQL sources. Step-by-step guides for seamless data and application transitions with schema discovery. - [RedisGraph to FalkorDB](https://docs.falkordb.com/operations/migration/redisgraph-to-falkordb.md): Migrate from RedisGraph to FalkorDB. - [Neo4j to FalkorDB](https://docs.falkordb.com/operations/migration/neo4j-to-falkordb.md): Migrate from Neo4j to FalkorDB. - [Kuzu to FalkorDB](https://docs.falkordb.com/operations/migration/kuzu-to-falkordb.md): Migrate from Kuzu to FalkorDB. - [RDF to FalkorDB](https://docs.falkordb.com/operations/migration/rdf-to-falkordb.md): Migrate RDF (TTL) data to FalkorDB property graph with schema extraction, URI shortening, CSV export, and automated loading. Python and Rust loaders for efficient data transfer. - [SQL Sources to FalkorDB (Online Migration)](https://docs.falkordb.com/operations/migration/sql-to-falkordb.md): Online migration and incremental sync from SQL sources (BigQuery, ClickHouse, Databricks, MariaDB, MySQL, PostgreSQL, Snowflake, Spark SQL, SQL Server) into FalkorDB using DM-SQL-to-FalkorDB loaders and control plane. - [Durability](https://docs.falkordb.com/operations/durability/index.md): Understand FalkorDB data durability with RDB snapshots, AOF logging, and graph-specific backup options (DUMP/RESTORE). Balance performance and data safety for production use. - [Persistence on Docker](https://docs.falkordb.com/operations/durability/persistence.md): Configure persistent data storage for FalkorDB in Docker using volumes to ensure your graph data remains intact across container restarts and system reboots. - [ACL Persistence on Docker](https://docs.falkordb.com/operations/durability/acl-persistence.md): Run FalkorDB in Docker with persistent Access Control List (ACL) users by mounting an external ACL file so users, passwords, and permissions survive container restarts and recreations. - [Replication](https://docs.falkordb.com/operations/replication.md): Configure FalkorDB Docker replication for high availability and redundancy. Set up master–replica architecture with step-by-step synchronization. - [Cluster](https://docs.falkordb.com/operations/cluster.md): Set up a FalkorDB cluster with Docker for horizontal scalability and fault tolerance. Configure multiple master and replica nodes with step-by-step instructions. - [Kubernetes support](https://docs.falkordb.com/operations/k8s-support.md): Deploy FalkorDB to Kubernetes. - [OpenTelemetry Integration](https://docs.falkordb.com/operations/opentelemetry.md): Guide for setting up OpenTelemetry tracing with FalkorDB Python applications - [Railway](https://docs.falkordb.com/operations/railway.md): Deploy FalkorDB on Railway with verified templates for single-instance or cluster configurations. Includes connection, persistence, and production guidance. - [FalkorDBLite](https://docs.falkordb.com/operations/falkordblite/index.md): Embedded FalkorDB runtime with Python and TypeScript bindings for embedded graph, local development, testing, and CI/CD pipelines without managing external servers. - [FalkorDBLite (Python)](https://docs.falkordb.com/operations/falkordblite/falkordblite-py.md): Self-contained Python interface to FalkorDB for Python apps - [FalkorDBLite (TypeScript)](https://docs.falkordb.com/operations/falkordblite/falkordblite-ts.md): Embedded FalkorDB runtime for Node.js and TypeScript - [Lightning.AI](https://docs.falkordb.com/operations/lightning-ai.md): Deploy FalkorDB on Lightning.AI platform to build fast, accurate GenAI applications using advanced RAG (Retrieval-Augmented Generation) with graph-enhanced context and relationships. - [Building Docker](https://docs.falkordb.com/operations/building-docker.md): Build custom FalkorDB Docker containers from source with platform-specific examples for CentOS, Ubuntu, Debian, and Alpine. Manual installation and build system instructions. - [KubeBlocks](https://docs.falkordb.com/operations/kubeblocks.md): Deploy FalkorDB on Kubernetes with KubeBlocks - [Docker and Docker Compose](https://docs.falkordb.com/operations/docker.md): Running FalkorDB with Docker and Docker Compose - [The FalkorDB Design](https://docs.falkordb.com/design/index.md): FalkorDB: A High Performance In-Memory Graph Database - [Client Specification](https://docs.falkordb.com/design/client-spec.md): Technical specification for writing FalkorDB client libraries - [Result Set Structure](https://docs.falkordb.com/design/result-structure.md): FalkorDB result set format specification for redis-cli output including headers, data arrays, metadata, scalars, graph entities (nodes and relationships), and collections. - [GRAPH.BULK endpoint specification](https://docs.falkordb.com/design/bulk-spec.md): Technical specification for the GRAPH.BULK endpoint used to import large datasets into FalkorDB with binary data format for nodes, edges, and properties. - [Third Party](https://docs.falkordb.com/design/third-party.md): Third-Party Components in FalkorDB - [Atomicity and Concurrency](https://docs.falkordb.com/design/concurrency.md): How FalkorDB handles atomicity within queries and concurrency across multiple queries, including isolation guarantees and write serialization. - [References](https://docs.falkordb.com/references/index.md): Explore FalkorDB resources including blog posts, videos, research papers, tutorials, and technical articles about graph databases, GraphBLAS, and performance benchmarks. - [FalkorDB License](https://docs.falkordb.com/references/license.md): Understanding the FalkorDB SSPLv1 license: usage rights, commercial applications, open-source requirements, internal use, and licensing FAQ for developers. - [Integration](https://docs.falkordb.com/integration/index.md): Learn how to integrate FalkorDB into your applications with REST APIs - [Rest API](https://docs.falkordb.com/integration/rest.md): Complete REST API reference for FalkorDB Browser, including authentication, graph management, query execution, and node/edge operations. - [Kafka Connect Sink](https://docs.falkordb.com/integration/kafka-connect.md): Stream data from Apache Kafka to FalkorDB using Kafka Connect Sink. Configure connector properties, define message formats, and execute Cypher commands from Kafka topics. - [Apache Jena](https://docs.falkordb.com/integration/jena.md): How to use FalkorDB with Apache Jena via the jena-falkordb-adapter. - [BOLT protocol support](https://docs.falkordb.com/integration/bolt-support.md): Connect to FalkorDB using the BOLT protocol with neo4j drivers. Experimental feature for compatibility with BOLT-based tools and Neo4j client libraries. - [Spring Data FalkorDB](https://docs.falkordb.com/integration/spring-data-falkordb.md): Use FalkorDB with Spring Data for JPA-style object-graph mapping. Repository pattern, derived queries, @Node/@Relationship annotations, and transaction support for Java applications. - [Snowflake Integration](https://docs.falkordb.com/integration/snowflake.md): Run graph database operations directly within your Snowflake environment using the FalkorDB Native App. - [PyTorch Geometric](https://docs.falkordb.com/integration/pyg.md): Train Graph Neural Networks on FalkorDB using the PyTorch Geometric remote backend. - [Bulk Loader](https://docs.falkordb.com/integration/bulk-loader.md): Import large graphs from CSV files into FalkorDB using the falkordb-bulk-loader tool - [n8n GraphRAG Nodes](https://docs.falkordb.com/integration/n8n.md): Use FalkorDB GraphRAG from n8n workflows with a pipeline node, an AI Agent tool, and a shared credential. - [GenAI Tools](https://docs.falkordb.com/genai-tools/index.md): Build intelligent GenAI applications with FalkorDB and LLMs using popular GraphRAG and agent frameworks like LangChain and LlamaIndex. - [GraphRAG-SDK](https://docs.falkordb.com/genai-tools/graphrag-sdk.md): Build intelligent GraphRAG applications with FalkorDB and LLMs — self-hosted with the SDK, or fully hosted with GraphRAG Server. - [AG2](https://docs.falkordb.com/genai-tools/ag2.md): Build multi-agent AI systems with AG2 (formerly AutoGen) and FalkorDB GraphRAG. Orchestrate collaborative agents with structured knowledge graphs for intelligent applications. - [LangChain](https://docs.falkordb.com/genai-tools/langchain.md): Build AI agents with memory using FalkorDB and LangChain. Python and JavaScript/TypeScript integration for conversational AI, GraphRAG, and knowledge graph question answering. - [LangGraph](https://docs.falkordb.com/genai-tools/langgraph.md): Build stateful, multi-actor agentic applications with LangGraph and FalkorDB. - [LlamaIndex](https://docs.falkordb.com/genai-tools/llamaindex.md): Build efficient GraphRAG systems with LlamaIndex and FalkorDB. - [GraphRAG Toolkit](https://docs.falkordb.com/genai-tools/graphrag-toolkit.md): AWS GraphRAG Toolkit integration with FalkorDB for building knowledge graph applications. Semantic-guided search, LLM-powered retrieval, and FalkorDB Cloud support for RAG systems. - [MCP Server](https://docs.falkordb.com/genai-tools/mcpserver/index.md): Enable AI assistants like Claude to interact with FalkorDB graph databases using the Model Context Protocol (MCP) - [Quick Start](https://docs.falkordb.com/genai-tools/mcpserver/quickstart.md): Get started with FalkorDB MCP Server in minutes using Docker Compose or direct installation for Claude Desktop, Cursor IDE, and other MCP clients. - [MCP Server Configuration](https://docs.falkordb.com/genai-tools/mcpserver/configuration.md): Configure FalkorDB MCP Server environment variables, transport modes (stdio/SSE), connection settings, and multi-instance deployments. - [Docker Deployment](https://docs.falkordb.com/genai-tools/mcpserver/docker.md): Deploy FalkorDB MCP Server with Docker and Docker Compose including FalkorDB database, environment configuration, and production setup. - [QueryWeaver](https://docs.falkordb.com/genai-tools/queryweaver.md): Open-source Text2SQL tool that converts plain-English questions into SQL using graph-powered schema understanding. Supports PostgreSQL, MySQL, and Snowflake. - [Code-Graph](https://docs.falkordb.com/genai-tools/code-graph.md): Visualize codebases as knowledge graphs with FalkorDB Code-Graph. Analyze dependencies, detect bottlenecks, and query code structure using GraphRAG and an interactive web UI or CLI. - [Agentic Memory](https://docs.falkordb.com/agentic-memory/index.md): Implement persistent, contextual memory for AI agents with FalkorDB using Graphiti, Cognee, and MCP servers for temporally-aware, multi-tenant knowledge graphs. - [Graphiti](https://docs.falkordb.com/agentic-memory/graphiti.md): Build temporally-aware, multi-tenant knowledge graphs with Graphiti and FalkorDB for AI systems with persistent memory, hybrid search, and real-time data integration. - [Cognee](https://docs.falkordb.com/agentic-memory/cognee.md): Build flexible agentic memory with Cognee and FalkorDB - [Graphiti MCP Server](https://docs.falkordb.com/agentic-memory/graphiti-mcp-server.md): Run Graphiti MCP server with FalkorDB for persistent AI agent memory in Claude Desktop, Cursor IDE, and other MCP clients with temporally-aware knowledge graphs. - [Mem0](https://docs.falkordb.com/agentic-memory/mem0.md): Add FalkorDB as a graph memory backend for Mem0 AI agents with per-user graph isolation, hybrid search, and seamless integration. - [Browser](https://docs.falkordb.com/browser/index.md): FalkorDB Browser web UI for visualizing graphs, running Cypher queries, exploring data models, managing nodes and relationships, with query history and API documentation. - [UI Elements](https://docs.falkordb.com/browser/ui/index.md): Detailed documentation for FalkorDB Browser UI screens, panels, and interactions. - [Login Screen](https://docs.falkordb.com/browser/ui/login.md): How to connect FalkorDB Browser to a FalkorDB server (manual fields, URL mode, TLS/CA). - [Navigation & Header](https://docs.falkordb.com/browser/ui/navigation.md): Left sidebar navigation (Graphs/Settings), graph-side panel toggles, help menu, theme toggle, logout. - [Settings Page](https://docs.falkordb.com/browser/ui/settings.md): Browser settings, tutorial replay, personal access tokens, and admin sections (DB configurations, users). - [Graph Page (Layout)](https://docs.falkordb.com/browser/ui/graph-page.md): How the main Graphs workspace is laid out: selector bar, query editor, results area, side panel that can be resized. - [Main Graph Canvas](https://docs.falkordb.com/browser/ui/graph-canvas.md): Interactive graph visualization: pan/zoom, selection, label/relationship toggles, and layout controls. - [Graph Info Panel](https://docs.falkordb.com/browser/ui/graph-info-panel.md): Graph statistics (counts, memory), labels, edge types, property keys, and quick exploration queries. - [Style Panel](https://docs.falkordb.com/browser/ui/style-panel.md): Customize label styles (color/size), live preview, persistence in localStorage, and cancel/save behavior. - [Data / Property Panel](https://docs.falkordb.com/browser/ui/data-panel.md): Inspect and edit node/edge details: ID, labels/relationship type, and property table editing. - [Query Editor](https://docs.falkordb.com/browser/ui/query-editor.md): Cypher editor: run shortcuts, autocomplete, maximize mode, placeholder behavior, and graph-scoped suggestions. - [Query History](https://docs.falkordb.com/browser/ui/query-history.md): Persistent local query history: open dialog, search/filter by graph, view metadata, delete queries. - [Table View](https://docs.falkordb.com/browser/ui/table-view.md): Tabular query results view, search/expand behaviors, and CSV export. - [Metadata View](https://docs.falkordb.com/browser/ui/metadata-view.md): Query execution details: metadata text, explain plan tree, and profile output. - [Graph Toolbar & Element Actions](https://docs.falkordb.com/browser/ui/toolbar-actions.md): In-canvas search, selection helpers, add node/edge flows, delete, and related controls. - [Chat Panel](https://docs.falkordb.com/browser/ui/chat-panel.md): Natural-language to query workflow, LLM connection setup, and persistence limits. - [UDF Libraries](https://docs.falkordb.com/browser/ui/udf-libraries.md): Manage JavaScript UDF libraries: load, inspect, remove, and export function bundles. - [Upload Data](https://docs.falkordb.com/browser/ui/upload-data.md): Use the Upload Data dialog to import CSV or Cypher batch files into the active graph. - [Graphs Manager](https://docs.falkordb.com/browser/ui/graph-management.md): Create, delete, duplicate, export, and upload graph data from FalkorDB Browser. - [API Docs (Swagger)](https://docs.falkordb.com/browser/ui/api-documentation.md): Use the built-in Swagger UI in FalkorDB Browser to explore and test REST API endpoints. - [Roles & Access](https://docs.falkordb.com/browser/ui/auth-access-control.md): How authentication and role-based permissions affect FalkorDB Browser features. - [Canvas](https://docs.falkordb.com/browser/canvas.md): FalkorDB Canvas – a standalone web component for visualizing FalkorDB graphs using force-directed layouts. - [FalkorDB Cloud](https://docs.falkordb.com/cloud/index.md): Provision and manage FalkorDB instances with the FalkorDB Cloud API - [Quickstart](https://docs.falkordb.com/cloud/quickstart.md): Create your first FalkorDB Cloud instance with the API - [Features](https://docs.falkordb.com/cloud/features.md): FalkorDB DBaaS Features - [Free Tier](https://docs.falkordb.com/cloud/tiers/free.md): FalkorDB DBaaS Free Tier - [Startup Tier](https://docs.falkordb.com/cloud/tiers/startup.md): FalkorDB DBaaS Startup Tier - [Pro Tier](https://docs.falkordb.com/cloud/tiers/pro.md): FalkorDB Cloud Pro Tier starting at $350/month with high availability, multi-zone deployment, cluster support, continuous persistence, and 24/7 dedicated support for production workloads. - [Enterprise Tier](https://docs.falkordb.com/cloud/tiers/enterprise.md): FalkorDB DBaaS Enterprise Tier - [Export and Import](https://docs.falkordb.com/cloud/operations/export-import.md): Export and import a FalkorDB Cloud instance using RDB. Export to a download link, Google Cloud Storage, or Amazon S3. Import from a file, URL, cloud storage, or another instance. Schedule recurring exports on Pro and Enterprise. - [Upgrading Instances](https://docs.falkordb.com/cloud/operations/upgrading-instances.md): Change the database size of a Startup, Pro, or Enterprise instance with the edit button. Deployment type and tier changes require creating a new instance and importing your data. - [User Management](https://docs.falkordb.com/cloud/operations/user-management.md): Guide to managing database users on a FalkorDB Cloud instance. Learn how to create, update, and delete users, assign ACL presets, and apply custom Redis ACL rules. - [Monitoring Dashboard](https://docs.falkordb.com/cloud/operations/monitoring-dashboard.md): Guide to the FalkorDB Cloud Grafana monitoring dashboard. Learn what each panel shows and how to read it, including memory, commands, latency, system, and client metrics. - [Maintenance Windows](https://docs.falkordb.com/cloud/operations/maintenance-windows.md): FalkorDB Cloud maintenance windows for Enterprise deployments. Learn when maintenance happens, what to expect during it, and how to coordinate a window with our team. - [Introduction](https://docs.falkordb.com/cloud/api-reference/introduction.md): Overview of the FalkorDB Cloud API - [Schemas](https://docs.falkordb.com/cloud/api-reference/schemas.md): Shared request and response shapes used across the FalkorDB Cloud API. - [Sign in](https://docs.falkordb.com/cloud/api-reference/authentication/signin.md): Sign into FalkorDB Cloud and receive session cookies. - [Sign out](https://docs.falkordb.com/cloud/api-reference/authentication/logout.md): End the current session and clear the session cookies. - [List service plans](https://docs.falkordb.com/cloud/api-reference/account/service-plans.md): List the FalkorDB service plans you can subscribe to. - [List subscriptions](https://docs.falkordb.com/cloud/api-reference/account/subscriptions/list.md): List the subscriptions your account belongs to. - [Create subscription](https://docs.falkordb.com/cloud/api-reference/account/subscriptions/create.md): Subscribe to a FalkorDB service plan. - [Describe subscription](https://docs.falkordb.com/cloud/api-reference/account/subscriptions/describe.md): Retrieve the details of a single subscription. - [Delete subscription](https://docs.falkordb.com/cloud/api-reference/account/subscriptions/delete.md): Cancel a subscription. - [List subscription users](https://docs.falkordb.com/cloud/api-reference/account/access/list-users.md): List the users who have access to your subscriptions. - [Invite user](https://docs.falkordb.com/cloud/api-reference/account/access/invite-user.md): Grant a user access to a subscription. - [Revoke user role](https://docs.falkordb.com/cloud/api-reference/account/access/revoke-user.md): Remove a user's access to a subscription. - [Describe user](https://docs.falkordb.com/cloud/api-reference/account/user/describe.md): Retrieve the profile of the signed-in user. - [Cloud accounts](https://docs.falkordb.com/cloud/api-reference/cloud-accounts/overview.md): Connect your own AWS, GCP, Azure, or OCI account for Enterprise BYOA deployments. - [Create cloud account](https://docs.falkordb.com/cloud/api-reference/cloud-accounts/create.md): Register your own cloud account for Enterprise BYOA deployments. - [Describe account configuration](https://docs.falkordb.com/cloud/api-reference/cloud-accounts/describe.md): Get the status and bootstrap instructions for a cloud account. - [Connect or disconnect cloud account](https://docs.falkordb.com/cloud/api-reference/cloud-accounts/connection.md): Reconnect a cloud account or temporarily disconnect it from FalkorDB. - [List custom networks](https://docs.falkordb.com/cloud/api-reference/networking/list.md): List the custom networks available to your subscriptions. - [Create custom network](https://docs.falkordb.com/cloud/api-reference/networking/create.md): Reserve a CIDR block for a custom network in a cloud provider region. - [Describe custom network](https://docs.falkordb.com/cloud/api-reference/networking/describe.md): Retrieve the details of a custom network. - [Update custom network](https://docs.falkordb.com/cloud/api-reference/networking/update.md): Rename a custom network. - [Delete custom network](https://docs.falkordb.com/cloud/api-reference/networking/delete.md): Delete a custom network. - [List snapshots](https://docs.falkordb.com/cloud/api-reference/snapshots/list.md): List the snapshots taken across your deployment instances. - [Create snapshot](https://docs.falkordb.com/cloud/api-reference/snapshots/create.md): Take a manual snapshot of a deployment instance. - [Describe snapshot](https://docs.falkordb.com/cloud/api-reference/snapshots/describe.md): Retrieve the details and progress of a snapshot. - [Restore from snapshot](https://docs.falkordb.com/cloud/api-reference/snapshots/restore.md): Create a new deployment instance from a snapshot. - [Copy snapshot](https://docs.falkordb.com/cloud/api-reference/snapshots/copy.md): Copy a snapshot to another region. - [Delete snapshot](https://docs.falkordb.com/cloud/api-reference/snapshots/delete.md): Delete a snapshot. - [Database users](https://docs.falkordb.com/cloud/api-reference/database-users/overview.md): Manage FalkorDB database users and ACLs on a deployment instance. - [List database users](https://docs.falkordb.com/cloud/api-reference/database-users/list.md): List the database users configured on a deployment instance. - [Create database user](https://docs.falkordb.com/cloud/api-reference/database-users/create.md): Add a database user to a deployment instance. - [Update database user](https://docs.falkordb.com/cloud/api-reference/database-users/update.md): Rotate the password or change the ACL of a database user. - [Delete database user](https://docs.falkordb.com/cloud/api-reference/database-users/delete.md): Remove a database user from a deployment instance. - [List instances](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/standalone/list.md): List the IDs of all Enterprise BYOA Standalone instances in your subscription. - [Create instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/standalone/create.md): Provision a new Enterprise BYOA Standalone instance. - [Describe instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/standalone/describe.md): Get the current configuration and status of an Enterprise BYOA Standalone instance. - [Update instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/standalone/update.md): Update the configuration of an Enterprise BYOA Standalone instance. - [Delete instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/standalone/delete.md): Permanently delete an Enterprise BYOA Standalone instance and its data. - [Trigger backup](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/standalone/backup.md): Trigger an on-demand backup of an Enterprise BYOA Standalone instance. - [Copy snapshot](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/standalone/copy-snapshot.md): Copy a snapshot of an Enterprise BYOA Standalone instance to another region. - [Failover replica](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/standalone/failover.md): Fail over a replica of an Enterprise BYOA Standalone instance. - [Start instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/standalone/start.md): Start a stopped Enterprise BYOA Standalone instance. - [Stop instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/standalone/stop.md): Stop a running Enterprise BYOA Standalone instance without deleting it. - [Restart instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/standalone/restart.md): Restart an Enterprise BYOA Standalone instance. - [List instances](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/cluster-multi-zone/list.md): List the IDs of all Enterprise BYOA Cluster (Multi-Zone) instances in your subscription. - [Create instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/cluster-multi-zone/create.md): Provision a new Enterprise BYOA Cluster (Multi-Zone) instance. - [Describe instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/cluster-multi-zone/describe.md): Get the current configuration and status of an Enterprise BYOA Cluster (Multi-Zone) instance. - [Update instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/cluster-multi-zone/update.md): Update the configuration of an Enterprise BYOA Cluster (Multi-Zone) instance. - [Delete instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/cluster-multi-zone/delete.md): Permanently delete an Enterprise BYOA Cluster (Multi-Zone) instance and its data. - [Trigger backup](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/cluster-multi-zone/backup.md): Trigger an on-demand backup of an Enterprise BYOA Cluster (Multi-Zone) instance. - [Copy snapshot](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/cluster-multi-zone/copy-snapshot.md): Copy a snapshot of an Enterprise BYOA Cluster (Multi-Zone) instance to another region. - [Failover replica](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/cluster-multi-zone/failover.md): Fail over a replica of an Enterprise BYOA Cluster (Multi-Zone) instance. - [Start instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/cluster-multi-zone/start.md): Start a stopped Enterprise BYOA Cluster (Multi-Zone) instance. - [Stop instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/cluster-multi-zone/stop.md): Stop a running Enterprise BYOA Cluster (Multi-Zone) instance without deleting it. - [Restart instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/cluster-multi-zone/restart.md): Restart an Enterprise BYOA Cluster (Multi-Zone) instance. - [List instances](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/cluster-single-zone/list.md): List the IDs of all Enterprise BYOA Cluster (Single-Zone) instances in your subscription. - [Create instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/cluster-single-zone/create.md): Provision a new Enterprise BYOA Cluster (Single-Zone) instance. - [Describe instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/cluster-single-zone/describe.md): Get the current configuration and status of an Enterprise BYOA Cluster (Single-Zone) instance. - [Update instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/cluster-single-zone/update.md): Update the configuration of an Enterprise BYOA Cluster (Single-Zone) instance. - [Delete instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/cluster-single-zone/delete.md): Permanently delete an Enterprise BYOA Cluster (Single-Zone) instance and its data. - [Trigger backup](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/cluster-single-zone/backup.md): Trigger an on-demand backup of an Enterprise BYOA Cluster (Single-Zone) instance. - [Copy snapshot](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/cluster-single-zone/copy-snapshot.md): Copy a snapshot of an Enterprise BYOA Cluster (Single-Zone) instance to another region. - [Failover replica](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/cluster-single-zone/failover.md): Fail over a replica of an Enterprise BYOA Cluster (Single-Zone) instance. - [Start instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/cluster-single-zone/start.md): Start a stopped Enterprise BYOA Cluster (Single-Zone) instance. - [Stop instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/cluster-single-zone/stop.md): Stop a running Enterprise BYOA Cluster (Single-Zone) instance without deleting it. - [Restart instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/cluster-single-zone/restart.md): Restart an Enterprise BYOA Cluster (Single-Zone) instance. - [List instances](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/multi-zone/list.md): List the IDs of all Enterprise BYOA Multi-Zone instances in your subscription. - [Create instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/multi-zone/create.md): Provision a new Enterprise BYOA Multi-Zone instance. - [Describe instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/multi-zone/describe.md): Get the current configuration and status of an Enterprise BYOA Multi-Zone instance. - [Update instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/multi-zone/update.md): Update the configuration of an Enterprise BYOA Multi-Zone instance. - [Delete instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/multi-zone/delete.md): Permanently delete an Enterprise BYOA Multi-Zone instance and its data. - [Trigger backup](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/multi-zone/backup.md): Trigger an on-demand backup of an Enterprise BYOA Multi-Zone instance. - [Copy snapshot](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/multi-zone/copy-snapshot.md): Copy a snapshot of an Enterprise BYOA Multi-Zone instance to another region. - [Failover replica](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/multi-zone/failover.md): Fail over a replica of an Enterprise BYOA Multi-Zone instance. - [Start instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/multi-zone/start.md): Start a stopped Enterprise BYOA Multi-Zone instance. - [Stop instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/multi-zone/stop.md): Stop a running Enterprise BYOA Multi-Zone instance without deleting it. - [Restart instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/multi-zone/restart.md): Restart an Enterprise BYOA Multi-Zone instance. - [List instances](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/single-zone/list.md): List the IDs of all Enterprise BYOA Single-Zone instances in your subscription. - [Create instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/single-zone/create.md): Provision a new Enterprise BYOA Single-Zone instance. - [Describe instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/single-zone/describe.md): Get the current configuration and status of an Enterprise BYOA Single-Zone instance. - [Update instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/single-zone/update.md): Update the configuration of an Enterprise BYOA Single-Zone instance. - [Delete instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/single-zone/delete.md): Permanently delete an Enterprise BYOA Single-Zone instance and its data. - [Trigger backup](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/single-zone/backup.md): Trigger an on-demand backup of an Enterprise BYOA Single-Zone instance. - [Copy snapshot](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/single-zone/copy-snapshot.md): Copy a snapshot of an Enterprise BYOA Single-Zone instance to another region. - [Failover replica](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/single-zone/failover.md): Fail over a replica of an Enterprise BYOA Single-Zone instance. - [Start instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/single-zone/start.md): Start a stopped Enterprise BYOA Single-Zone instance. - [Stop instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/single-zone/stop.md): Stop a running Enterprise BYOA Single-Zone instance without deleting it. - [Restart instance](https://docs.falkordb.com/cloud/api-reference/enterprise-byoa/single-zone/restart.md): Restart an Enterprise BYOA Single-Zone instance. - [List instances](https://docs.falkordb.com/cloud/api-reference/enterprise/standalone/list.md): List the IDs of all Enterprise Standalone instances in your subscription. - [Create instance](https://docs.falkordb.com/cloud/api-reference/enterprise/standalone/create.md): Provision a new Enterprise Standalone instance. - [Describe instance](https://docs.falkordb.com/cloud/api-reference/enterprise/standalone/describe.md): Get the current configuration and status of an Enterprise Standalone instance. - [Update instance](https://docs.falkordb.com/cloud/api-reference/enterprise/standalone/update.md): Update the configuration of an Enterprise Standalone instance. - [Delete instance](https://docs.falkordb.com/cloud/api-reference/enterprise/standalone/delete.md): Permanently delete an Enterprise Standalone instance and its data. - [Trigger backup](https://docs.falkordb.com/cloud/api-reference/enterprise/standalone/backup.md): Trigger an on-demand backup of an Enterprise Standalone instance. - [Copy snapshot](https://docs.falkordb.com/cloud/api-reference/enterprise/standalone/copy-snapshot.md): Copy a snapshot of an Enterprise Standalone instance to another region. - [Failover replica](https://docs.falkordb.com/cloud/api-reference/enterprise/standalone/failover.md): Fail over a replica of an Enterprise Standalone instance. - [Start instance](https://docs.falkordb.com/cloud/api-reference/enterprise/standalone/start.md): Start a stopped Enterprise Standalone instance. - [Stop instance](https://docs.falkordb.com/cloud/api-reference/enterprise/standalone/stop.md): Stop a running Enterprise Standalone instance without deleting it. - [Restart instance](https://docs.falkordb.com/cloud/api-reference/enterprise/standalone/restart.md): Restart an Enterprise Standalone instance. - [List instances](https://docs.falkordb.com/cloud/api-reference/enterprise/cluster-multi-zone/list.md): List the IDs of all Enterprise Cluster (Multi-Zone) instances in your subscription. - [Create instance](https://docs.falkordb.com/cloud/api-reference/enterprise/cluster-multi-zone/create.md): Provision a new Enterprise Cluster (Multi-Zone) instance. - [Describe instance](https://docs.falkordb.com/cloud/api-reference/enterprise/cluster-multi-zone/describe.md): Get the current configuration and status of an Enterprise Cluster (Multi-Zone) instance. - [Update instance](https://docs.falkordb.com/cloud/api-reference/enterprise/cluster-multi-zone/update.md): Update the configuration of an Enterprise Cluster (Multi-Zone) instance. - [Delete instance](https://docs.falkordb.com/cloud/api-reference/enterprise/cluster-multi-zone/delete.md): Permanently delete an Enterprise Cluster (Multi-Zone) instance and its data. - [Trigger backup](https://docs.falkordb.com/cloud/api-reference/enterprise/cluster-multi-zone/backup.md): Trigger an on-demand backup of an Enterprise Cluster (Multi-Zone) instance. - [Copy snapshot](https://docs.falkordb.com/cloud/api-reference/enterprise/cluster-multi-zone/copy-snapshot.md): Copy a snapshot of an Enterprise Cluster (Multi-Zone) instance to another region. - [Failover replica](https://docs.falkordb.com/cloud/api-reference/enterprise/cluster-multi-zone/failover.md): Fail over a replica of an Enterprise Cluster (Multi-Zone) instance. - [Start instance](https://docs.falkordb.com/cloud/api-reference/enterprise/cluster-multi-zone/start.md): Start a stopped Enterprise Cluster (Multi-Zone) instance. - [Stop instance](https://docs.falkordb.com/cloud/api-reference/enterprise/cluster-multi-zone/stop.md): Stop a running Enterprise Cluster (Multi-Zone) instance without deleting it. - [Restart instance](https://docs.falkordb.com/cloud/api-reference/enterprise/cluster-multi-zone/restart.md): Restart an Enterprise Cluster (Multi-Zone) instance. - [List instances](https://docs.falkordb.com/cloud/api-reference/enterprise/cluster-single-zone/list.md): List the IDs of all Enterprise Cluster (Single-Zone) instances in your subscription. - [Create instance](https://docs.falkordb.com/cloud/api-reference/enterprise/cluster-single-zone/create.md): Provision a new Enterprise Cluster (Single-Zone) instance. - [Describe instance](https://docs.falkordb.com/cloud/api-reference/enterprise/cluster-single-zone/describe.md): Get the current configuration and status of an Enterprise Cluster (Single-Zone) instance. - [Update instance](https://docs.falkordb.com/cloud/api-reference/enterprise/cluster-single-zone/update.md): Update the configuration of an Enterprise Cluster (Single-Zone) instance. - [Delete instance](https://docs.falkordb.com/cloud/api-reference/enterprise/cluster-single-zone/delete.md): Permanently delete an Enterprise Cluster (Single-Zone) instance and its data. - [Trigger backup](https://docs.falkordb.com/cloud/api-reference/enterprise/cluster-single-zone/backup.md): Trigger an on-demand backup of an Enterprise Cluster (Single-Zone) instance. - [Copy snapshot](https://docs.falkordb.com/cloud/api-reference/enterprise/cluster-single-zone/copy-snapshot.md): Copy a snapshot of an Enterprise Cluster (Single-Zone) instance to another region. - [Failover replica](https://docs.falkordb.com/cloud/api-reference/enterprise/cluster-single-zone/failover.md): Fail over a replica of an Enterprise Cluster (Single-Zone) instance. - [Start instance](https://docs.falkordb.com/cloud/api-reference/enterprise/cluster-single-zone/start.md): Start a stopped Enterprise Cluster (Single-Zone) instance. - [Stop instance](https://docs.falkordb.com/cloud/api-reference/enterprise/cluster-single-zone/stop.md): Stop a running Enterprise Cluster (Single-Zone) instance without deleting it. - [Restart instance](https://docs.falkordb.com/cloud/api-reference/enterprise/cluster-single-zone/restart.md): Restart an Enterprise Cluster (Single-Zone) instance. - [List instances](https://docs.falkordb.com/cloud/api-reference/enterprise/multi-zone/list.md): List the IDs of all Enterprise Multi-Zone instances in your subscription. - [Create instance](https://docs.falkordb.com/cloud/api-reference/enterprise/multi-zone/create.md): Provision a new Enterprise Multi-Zone instance. - [Describe instance](https://docs.falkordb.com/cloud/api-reference/enterprise/multi-zone/describe.md): Get the current configuration and status of an Enterprise Multi-Zone instance. - [Update instance](https://docs.falkordb.com/cloud/api-reference/enterprise/multi-zone/update.md): Update the configuration of an Enterprise Multi-Zone instance. - [Delete instance](https://docs.falkordb.com/cloud/api-reference/enterprise/multi-zone/delete.md): Permanently delete an Enterprise Multi-Zone instance and its data. - [Trigger backup](https://docs.falkordb.com/cloud/api-reference/enterprise/multi-zone/backup.md): Trigger an on-demand backup of an Enterprise Multi-Zone instance. - [Copy snapshot](https://docs.falkordb.com/cloud/api-reference/enterprise/multi-zone/copy-snapshot.md): Copy a snapshot of an Enterprise Multi-Zone instance to another region. - [Failover replica](https://docs.falkordb.com/cloud/api-reference/enterprise/multi-zone/failover.md): Fail over a replica of an Enterprise Multi-Zone instance. - [Start instance](https://docs.falkordb.com/cloud/api-reference/enterprise/multi-zone/start.md): Start a stopped Enterprise Multi-Zone instance. - [Stop instance](https://docs.falkordb.com/cloud/api-reference/enterprise/multi-zone/stop.md): Stop a running Enterprise Multi-Zone instance without deleting it. - [Restart instance](https://docs.falkordb.com/cloud/api-reference/enterprise/multi-zone/restart.md): Restart an Enterprise Multi-Zone instance. - [List instances](https://docs.falkordb.com/cloud/api-reference/enterprise/single-zone/list.md): List the IDs of all Enterprise Single-Zone instances in your subscription. - [Create instance](https://docs.falkordb.com/cloud/api-reference/enterprise/single-zone/create.md): Provision a new Enterprise Single-Zone instance. - [Describe instance](https://docs.falkordb.com/cloud/api-reference/enterprise/single-zone/describe.md): Get the current configuration and status of an Enterprise Single-Zone instance. - [Update instance](https://docs.falkordb.com/cloud/api-reference/enterprise/single-zone/update.md): Update the configuration of an Enterprise Single-Zone instance. - [Delete instance](https://docs.falkordb.com/cloud/api-reference/enterprise/single-zone/delete.md): Permanently delete an Enterprise Single-Zone instance and its data. - [Trigger backup](https://docs.falkordb.com/cloud/api-reference/enterprise/single-zone/backup.md): Trigger an on-demand backup of an Enterprise Single-Zone instance. - [Copy snapshot](https://docs.falkordb.com/cloud/api-reference/enterprise/single-zone/copy-snapshot.md): Copy a snapshot of an Enterprise Single-Zone instance to another region. - [Failover replica](https://docs.falkordb.com/cloud/api-reference/enterprise/single-zone/failover.md): Fail over a replica of an Enterprise Single-Zone instance. - [Start instance](https://docs.falkordb.com/cloud/api-reference/enterprise/single-zone/start.md): Start a stopped Enterprise Single-Zone instance. - [Stop instance](https://docs.falkordb.com/cloud/api-reference/enterprise/single-zone/stop.md): Stop a running Enterprise Single-Zone instance without deleting it. - [Restart instance](https://docs.falkordb.com/cloud/api-reference/enterprise/single-zone/restart.md): Restart an Enterprise Single-Zone instance. - [List instances](https://docs.falkordb.com/cloud/api-reference/pro/standalone/list.md): List the IDs of all Pro Standalone instances in your subscription. - [Create instance](https://docs.falkordb.com/cloud/api-reference/pro/standalone/create.md): Provision a new Pro Standalone instance. - [Describe instance](https://docs.falkordb.com/cloud/api-reference/pro/standalone/describe.md): Get the current configuration and status of a Pro Standalone instance. - [Update instance](https://docs.falkordb.com/cloud/api-reference/pro/standalone/update.md): Update the configuration of a Pro Standalone instance. - [Delete instance](https://docs.falkordb.com/cloud/api-reference/pro/standalone/delete.md): Permanently delete a Pro Standalone instance and its data. - [Trigger backup](https://docs.falkordb.com/cloud/api-reference/pro/standalone/backup.md): Trigger an on-demand backup of a Pro Standalone instance. - [Copy snapshot](https://docs.falkordb.com/cloud/api-reference/pro/standalone/copy-snapshot.md): Copy a snapshot of a Pro Standalone instance to another region. - [Failover replica](https://docs.falkordb.com/cloud/api-reference/pro/standalone/failover.md): Fail over a replica of a Pro Standalone instance. - [Start instance](https://docs.falkordb.com/cloud/api-reference/pro/standalone/start.md): Start a stopped Pro Standalone instance. - [Stop instance](https://docs.falkordb.com/cloud/api-reference/pro/standalone/stop.md): Stop a running Pro Standalone instance without deleting it. - [Restart instance](https://docs.falkordb.com/cloud/api-reference/pro/standalone/restart.md): Restart a Pro Standalone instance. - [List instances](https://docs.falkordb.com/cloud/api-reference/pro/cluster-multi-zone/list.md): List the IDs of all Pro Cluster (Multi-Zone) instances in your subscription. - [Create instance](https://docs.falkordb.com/cloud/api-reference/pro/cluster-multi-zone/create.md): Provision a new Pro Cluster (Multi-Zone) instance. - [Describe instance](https://docs.falkordb.com/cloud/api-reference/pro/cluster-multi-zone/describe.md): Get the current configuration and status of a Pro Cluster (Multi-Zone) instance. - [Update instance](https://docs.falkordb.com/cloud/api-reference/pro/cluster-multi-zone/update.md): Update the configuration of a Pro Cluster (Multi-Zone) instance. - [Delete instance](https://docs.falkordb.com/cloud/api-reference/pro/cluster-multi-zone/delete.md): Permanently delete a Pro Cluster (Multi-Zone) instance and its data. - [Trigger backup](https://docs.falkordb.com/cloud/api-reference/pro/cluster-multi-zone/backup.md): Trigger an on-demand backup of a Pro Cluster (Multi-Zone) instance. - [Copy snapshot](https://docs.falkordb.com/cloud/api-reference/pro/cluster-multi-zone/copy-snapshot.md): Copy a snapshot of a Pro Cluster (Multi-Zone) instance to another region. - [Failover replica](https://docs.falkordb.com/cloud/api-reference/pro/cluster-multi-zone/failover.md): Fail over a replica of a Pro Cluster (Multi-Zone) instance. - [Start instance](https://docs.falkordb.com/cloud/api-reference/pro/cluster-multi-zone/start.md): Start a stopped Pro Cluster (Multi-Zone) instance. - [Stop instance](https://docs.falkordb.com/cloud/api-reference/pro/cluster-multi-zone/stop.md): Stop a running Pro Cluster (Multi-Zone) instance without deleting it. - [Restart instance](https://docs.falkordb.com/cloud/api-reference/pro/cluster-multi-zone/restart.md): Restart a Pro Cluster (Multi-Zone) instance. - [List instances](https://docs.falkordb.com/cloud/api-reference/pro/multi-zone/list.md): List the IDs of all Pro Multi-Zone instances in your subscription. - [Create instance](https://docs.falkordb.com/cloud/api-reference/pro/multi-zone/create.md): Provision a new Pro Multi-Zone instance. - [Describe instance](https://docs.falkordb.com/cloud/api-reference/pro/multi-zone/describe.md): Get the current configuration and status of a Pro Multi-Zone instance. - [Update instance](https://docs.falkordb.com/cloud/api-reference/pro/multi-zone/update.md): Update the configuration of a Pro Multi-Zone instance. - [Delete instance](https://docs.falkordb.com/cloud/api-reference/pro/multi-zone/delete.md): Permanently delete a Pro Multi-Zone instance and its data. - [Trigger backup](https://docs.falkordb.com/cloud/api-reference/pro/multi-zone/backup.md): Trigger an on-demand backup of a Pro Multi-Zone instance. - [Copy snapshot](https://docs.falkordb.com/cloud/api-reference/pro/multi-zone/copy-snapshot.md): Copy a snapshot of a Pro Multi-Zone instance to another region. - [Failover replica](https://docs.falkordb.com/cloud/api-reference/pro/multi-zone/failover.md): Fail over a replica of a Pro Multi-Zone instance. - [Start instance](https://docs.falkordb.com/cloud/api-reference/pro/multi-zone/start.md): Start a stopped Pro Multi-Zone instance. - [Stop instance](https://docs.falkordb.com/cloud/api-reference/pro/multi-zone/stop.md): Stop a running Pro Multi-Zone instance without deleting it. - [Restart instance](https://docs.falkordb.com/cloud/api-reference/pro/multi-zone/restart.md): Restart a Pro Multi-Zone instance. - [List instances](https://docs.falkordb.com/cloud/api-reference/pro/single-zone/list.md): List the IDs of all Pro Single-Zone instances in your subscription. - [Create instance](https://docs.falkordb.com/cloud/api-reference/pro/single-zone/create.md): Provision a new Pro Single-Zone instance. - [Describe instance](https://docs.falkordb.com/cloud/api-reference/pro/single-zone/describe.md): Get the current configuration and status of a Pro Single-Zone instance. - [Update instance](https://docs.falkordb.com/cloud/api-reference/pro/single-zone/update.md): Update the configuration of a Pro Single-Zone instance. - [Delete instance](https://docs.falkordb.com/cloud/api-reference/pro/single-zone/delete.md): Permanently delete a Pro Single-Zone instance and its data. - [Trigger backup](https://docs.falkordb.com/cloud/api-reference/pro/single-zone/backup.md): Trigger an on-demand backup of a Pro Single-Zone instance. - [Copy snapshot](https://docs.falkordb.com/cloud/api-reference/pro/single-zone/copy-snapshot.md): Copy a snapshot of a Pro Single-Zone instance to another region. - [Failover replica](https://docs.falkordb.com/cloud/api-reference/pro/single-zone/failover.md): Fail over a replica of a Pro Single-Zone instance. - [Start instance](https://docs.falkordb.com/cloud/api-reference/pro/single-zone/start.md): Start a stopped Pro Single-Zone instance. - [Stop instance](https://docs.falkordb.com/cloud/api-reference/pro/single-zone/stop.md): Stop a running Pro Single-Zone instance without deleting it. - [Restart instance](https://docs.falkordb.com/cloud/api-reference/pro/single-zone/restart.md): Restart a Pro Single-Zone instance. - [List instances](https://docs.falkordb.com/cloud/api-reference/startup/standalone/list.md): List the IDs of all Startup Standalone instances in your subscription. - [Create instance](https://docs.falkordb.com/cloud/api-reference/startup/standalone/create.md): Provision a new Startup Standalone instance. - [Describe instance](https://docs.falkordb.com/cloud/api-reference/startup/standalone/describe.md): Get the current configuration and status of a Startup Standalone instance. - [Update instance](https://docs.falkordb.com/cloud/api-reference/startup/standalone/update.md): Update the configuration of a Startup Standalone instance. - [Delete instance](https://docs.falkordb.com/cloud/api-reference/startup/standalone/delete.md): Permanently delete a Startup Standalone instance and its data. - [Trigger backup](https://docs.falkordb.com/cloud/api-reference/startup/standalone/backup.md): Trigger an on-demand backup of a Startup Standalone instance. - [Copy snapshot](https://docs.falkordb.com/cloud/api-reference/startup/standalone/copy-snapshot.md): Copy a snapshot of a Startup Standalone instance to another region. - [Failover replica](https://docs.falkordb.com/cloud/api-reference/startup/standalone/failover.md): Fail over a replica of a Startup Standalone instance. - [Start instance](https://docs.falkordb.com/cloud/api-reference/startup/standalone/start.md): Start a stopped Startup Standalone instance. - [Stop instance](https://docs.falkordb.com/cloud/api-reference/startup/standalone/stop.md): Stop a running Startup Standalone instance without deleting it. - [Restart instance](https://docs.falkordb.com/cloud/api-reference/startup/standalone/restart.md): Restart a Startup Standalone instance. - [List instances](https://docs.falkordb.com/cloud/api-reference/free/free/list.md): List the IDs of all Free instances in your subscription. - [Create instance](https://docs.falkordb.com/cloud/api-reference/free/free/create.md): Provision a new Free instance. - [Describe instance](https://docs.falkordb.com/cloud/api-reference/free/free/describe.md): Get the current configuration and status of a Free instance. - [Update instance](https://docs.falkordb.com/cloud/api-reference/free/free/update.md): Update the configuration of a Free instance. - [Delete instance](https://docs.falkordb.com/cloud/api-reference/free/free/delete.md): Permanently delete a Free instance and its data. - [Trigger backup](https://docs.falkordb.com/cloud/api-reference/free/free/backup.md): Trigger an on-demand backup of a Free instance. - [Copy snapshot](https://docs.falkordb.com/cloud/api-reference/free/free/copy-snapshot.md): Copy a snapshot of a Free instance to another region. - [Failover replica](https://docs.falkordb.com/cloud/api-reference/free/free/failover.md): Fail over a replica of a Free instance. - [Start instance](https://docs.falkordb.com/cloud/api-reference/free/free/start.md): Start a stopped Free instance. - [Stop instance](https://docs.falkordb.com/cloud/api-reference/free/free/stop.md): Stop a running Free instance without deleting it. - [Restart instance](https://docs.falkordb.com/cloud/api-reference/free/free/restart.md): Restart a Free instance. - [FalkorDB Enterprise](https://docs.falkordb.com/enterprise/index.md): Run FalkorDB as a self-managed, production-grade graph database platform on your own Kubernetes clusters. - [Platform overview](https://docs.falkordb.com/enterprise/get-started/overview.md): What FalkorDB Enterprise includes, how the components fit together, and when to use it. - [Requirements](https://docs.falkordb.com/enterprise/get-started/requirements.md): Cluster capacity, local tooling, permissions, and network access needed before you install. - [Quickstart](https://docs.falkordb.com/enterprise/get-started/quickstart.md): Install FalkorDB Enterprise into any Kubernetes cluster reachable by your current kubectl context. - [Production install](https://docs.falkordb.com/enterprise/deployment/production.md): Install FalkorDB Enterprise with managed secrets, private images, ingress, TLS, and persistence. - [Private registries](https://docs.falkordb.com/enterprise/deployment/private-images.md): Pull every image the chart uses from the FalkorDB mirror, or point the chart at your own private registry. - [External DNS access](https://docs.falkordb.com/enterprise/deployment/external-dns.md): Publish per-pod DNS names so workloads outside the cluster can reach databases directly. - [Azure Kubernetes Service](https://docs.falkordb.com/enterprise/deployment/aks.md): Provision Azure infrastructure and install FalkorDB Enterprise on AKS. - [Private AKS install](https://docs.falkordb.com/enterprise/deployment/aks-internal.md): Run FalkorDB Enterprise on AKS with an internal load balancer, Key Vault TLS, and private DNS. - [Amazon Elastic Kubernetes Service](https://docs.falkordb.com/enterprise/deployment/eks.md): Provision AWS infrastructure and install FalkorDB Enterprise on EKS. - [Google Kubernetes Engine](https://docs.falkordb.com/enterprise/deployment/gke.md): Provision GCP infrastructure and install FalkorDB Enterprise on GKE. - [Red Hat OpenShift](https://docs.falkordb.com/enterprise/deployment/openshift.md): Install FalkorDB Enterprise on OpenShift with SCC-compatible security contexts, Routes, and ODF storage. - [Rancher (RKE2 and K3s)](https://docs.falkordb.com/enterprise/deployment/rancher.md): Install FalkorDB Enterprise on Rancher-managed clusters with Longhorn storage and bundled ingress. - [Google OAuth](https://docs.falkordb.com/enterprise/authentication/google-oauth.md): Enable Google sign-in and Google Workspace group lookup for role mapping. - [Microsoft Entra ID OAuth](https://docs.falkordb.com/enterprise/authentication/azure-ad-oauth.md): Enable Microsoft Entra ID (Azure AD) sign-in and Microsoft Graph group lookup for role mapping. - [Networking](https://docs.falkordb.com/enterprise/databases/networking.md): How FalkorDB deployments are reachable inside the cluster by default, and what it takes to reach them from outside. - [Standalone deployment](https://docs.falkordb.com/enterprise/databases/standalone.md): Create a single-node FalkorDB deployment from the Admin UI. - [Replicated deployment](https://docs.falkordb.com/enterprise/databases/replicated.md): Create a multi-node FalkorDB deployment without Sentinel services. - [Replicated deployment with Sentinel](https://docs.falkordb.com/enterprise/databases/sentinel.md): Create a replicated FalkorDB deployment with Redis Sentinel high availability. - [Sharded deployment](https://docs.falkordb.com/enterprise/databases/sharded.md): Create a sharded FalkorDB deployment for horizontal data distribution. - [Deploy from YAML](https://docs.falkordb.com/enterprise/databases/yaml.md): Create a FalkorDB deployment from a raw KubeBlocks YAML manifest. - [Scale a deployment](https://docs.falkordb.com/enterprise/operations/scaling.md): Scale FalkorDB deployments horizontally and vertically. - [Parameters and resources](https://docs.falkordb.com/enterprise/operations/parameters.md): Change FalkorDB parameters, network services, CPU, memory, and storage. - [Backups and schedules](https://docs.falkordb.com/enterprise/operations/backups.md): Configure backup repositories, run on-demand backups, and create recurring schedules. - [Restore in place](https://docs.falkordb.com/enterprise/operations/restore-same-database.md): Restore a backup into an existing deployment. - [Restore to a new deployment](https://docs.falkordb.com/enterprise/operations/restore-new-database.md): Create a new deployment from an existing backup. - [Monitoring and Grafana](https://docs.falkordb.com/enterprise/operations/monitoring.md): View logs, live metrics, and optional Grafana dashboards. - [Reset the admin password](https://docs.falkordb.com/enterprise/operations/reset-admin-password.md): Recover an admin account by resetting the user Secret in Kubernetes. - [Upgrade FalkorDB Enterprise](https://docs.falkordb.com/enterprise/upgrades/enterprise.md): Upgrade the FalkorDB Enterprise Helm release safely. - [Changelog](https://docs.falkordb.com/enterprise/upgrades/changelog.md): Release notes for every published FalkorDB Enterprise version. - [Migrate from 0.3 to 0.4](https://docs.falkordb.com/enterprise/upgrades/migrations/0.3-to-0.4.md): Move image pulls from ghcr.io to registry.falkordb.cloud before upgrading to FalkorDB Enterprise 0.4. - [Upgrade KubeBlocks](https://docs.falkordb.com/enterprise/upgrades/kubeblocks.md): Upgrade the KubeBlocks platform components used by FalkorDB Enterprise. - [Upgrade a FalkorDB version](https://docs.falkordb.com/enterprise/upgrades/falkordb-version.md): Update a deployment to a target FalkorDB version. - [Uninstall](https://docs.falkordb.com/enterprise/upgrades/uninstall.md): Remove FalkorDB Enterprise and, optionally, the platform components it installed. - [Troubleshoot deployments](https://docs.falkordb.com/enterprise/troubleshooting/deployments.md): Diagnose and fix common issues with FalkorDB deployments managed by KubeBlocks. - [Support packages](https://docs.falkordb.com/enterprise/troubleshooting/support-package.md): Collect a diagnostics bundle and inspect its contents for support triage. - [Helm values](https://docs.falkordb.com/enterprise/reference/helm-values.md): High-impact Helm values for the FalkorDB Enterprise chart, verified against the chart defaults. - [All Helm values](https://docs.falkordb.com/enterprise/reference/helm-values-reference.md): Every value the FalkorDB Enterprise chart accepts, with its default, generated from values.yaml. - [Installer reference](https://docs.falkordb.com/enterprise/reference/installer-flags.md): Command-line options and environment variables for install.sh and uninstall.sh. - [Compatibility matrix](https://docs.falkordb.com/enterprise/reference/compatibility.md): Subchart and platform versions that ship with each FalkorDB Enterprise release. - [Command line](https://docs.falkordb.com/enterprise/reference/cli.md): Operate FalkorDB Enterprise from the terminal with the falkordb-admin CLI. - [Glossary](https://docs.falkordb.com/enterprise/reference/glossary.md): Terms used across the FalkorDB Enterprise documentation and Admin UI. - [Admin Server API](https://docs.falkordb.com/enterprise/api-reference/introduction.md): Authenticate against the FalkorDB Enterprise Admin Server and call its REST API. - [KubeBlocks resources](https://docs.falkordb.com/enterprise/api-reference/kubeblocks.md): Reference for the KubeBlocks custom resources behind FalkorDB Enterprise deployments. - [Health check endpoint](https://docs.falkordb.com/enterprise/api-reference/endpoints/system/health-check-endpoint.md) - [Readiness check endpoint](https://docs.falkordb.com/enterprise/api-reference/endpoints/system/readiness-check-endpoint.md) - [List all available Kubernetes namespaces](https://docs.falkordb.com/enterprise/api-reference/endpoints/system/list-all-available-kubernetes-namespaces.md) - [List all available FalkorDB component versions](https://docs.falkordb.com/enterprise/api-reference/endpoints/system/list-all-available-falkordb-component-versions.md) - [List all available Kubernetes StorageClasses](https://docs.falkordb.com/enterprise/api-reference/endpoints/system/list-all-available-kubernetes-storageclasses.md) - [Get aggregated cluster CPU/memory/storage capacity and deployment vs support usage split](https://docs.falkordb.com/enterprise/api-reference/endpoints/system/get-aggregated-cluster-cpumemorystorage-capacity-and-deployment-vs-support-usage-split.md) - [Get supported authentication methods and their public configuration](https://docs.falkordb.com/enterprise/api-reference/endpoints/authentication/get-supported-authentication-methods-and-their-public-configuration.md) - [Authenticate user with email and password](https://docs.falkordb.com/enterprise/api-reference/endpoints/authentication/authenticate-user-with-email-and-password.md) - [Logout current user](https://docs.falkordb.com/enterprise/api-reference/endpoints/authentication/logout-current-user.md) - [Validate authentication token](https://docs.falkordb.com/enterprise/api-reference/endpoints/authentication/validate-authentication-token.md) - [Initiate OAuth flow for a configured provider](https://docs.falkordb.com/enterprise/api-reference/endpoints/oauth/initiate-oauth-flow-for-a-configured-provider.md) - [Handle OAuth callback for a configured provider](https://docs.falkordb.com/enterprise/api-reference/endpoints/oauth/handle-oauth-callback-for-a-configured-provider.md) - [Handle OAuth callback for the configured provider](https://docs.falkordb.com/enterprise/api-reference/endpoints/oauth/handle-oauth-callback-for-the-configured-provider.md) - [List all users with optional filtering](https://docs.falkordb.com/enterprise/api-reference/endpoints/users/list-all-users-with-optional-filtering.md) - [Create a new user](https://docs.falkordb.com/enterprise/api-reference/endpoints/users/create-a-new-user.md) - [Get a specific user by email](https://docs.falkordb.com/enterprise/api-reference/endpoints/users/get-a-specific-user-by-email.md) - [Delete a user](https://docs.falkordb.com/enterprise/api-reference/endpoints/users/delete-a-user.md) - [Update an existing user](https://docs.falkordb.com/enterprise/api-reference/endpoints/users/update-an-existing-user.md) - [Reset user password](https://docs.falkordb.com/enterprise/api-reference/endpoints/users/reset-user-password.md) - [Get current user profile](https://docs.falkordb.com/enterprise/api-reference/endpoints/user-profile/get-current-user-profile.md) - [Change current user password](https://docs.falkordb.com/enterprise/api-reference/endpoints/user-profile/change-current-user-password.md) - [Get current user activity history](https://docs.falkordb.com/enterprise/api-reference/endpoints/user-profile/get-current-user-activity-history.md) - [List all backup repositories](https://docs.falkordb.com/enterprise/api-reference/endpoints/backup-repositories/list-all-backup-repositories.md) - [Create a new backup repository](https://docs.falkordb.com/enterprise/api-reference/endpoints/backup-repositories/create-a-new-backup-repository.md) - [Get a specific backup repository](https://docs.falkordb.com/enterprise/api-reference/endpoints/backup-repositories/get-a-specific-backup-repository.md) - [Delete a backup repository](https://docs.falkordb.com/enterprise/api-reference/endpoints/backup-repositories/delete-a-backup-repository.md) - [Update an existing backup repository](https://docs.falkordb.com/enterprise/api-reference/endpoints/backup-repositories/update-an-existing-backup-repository.md) - [Get all admin settings](https://docs.falkordb.com/enterprise/api-reference/endpoints/settings/get-all-admin-settings.md) - [Update admin settings](https://docs.falkordb.com/enterprise/api-reference/endpoints/settings/update-admin-settings.md) - [Query audit logs with filtering](https://docs.falkordb.com/enterprise/api-reference/endpoints/audit/query-audit-logs-with-filtering.md) - [Get current RBAC configuration](https://docs.falkordb.com/enterprise/api-reference/endpoints/rbac/get-current-rbac-configuration.md) - [Update RBAC configuration (full replace)](https://docs.falkordb.com/enterprise/api-reference/endpoints/rbac/update-rbac-configuration-full-replace.md) - [Reload RBAC configuration from ConfigMap](https://docs.falkordb.com/enterprise/api-reference/endpoints/rbac/reload-rbac-configuration-from-configmap.md) - [List all RBAC roles](https://docs.falkordb.com/enterprise/api-reference/endpoints/rbac/list-all-rbac-roles.md) - [Create a custom RBAC role](https://docs.falkordb.com/enterprise/api-reference/endpoints/rbac/create-a-custom-rbac-role.md) - [Get specific RBAC role by name](https://docs.falkordb.com/enterprise/api-reference/endpoints/rbac/get-specific-rbac-role-by-name.md) - [Update a custom RBAC role](https://docs.falkordb.com/enterprise/api-reference/endpoints/rbac/update-a-custom-rbac-role.md) - [Delete a custom RBAC role](https://docs.falkordb.com/enterprise/api-reference/endpoints/rbac/delete-a-custom-rbac-role.md) - [List all group-to-role mappings](https://docs.falkordb.com/enterprise/api-reference/endpoints/rbac/list-all-group-to-role-mappings.md) - [Create a group-to-role mapping](https://docs.falkordb.com/enterprise/api-reference/endpoints/rbac/create-a-group-to-role-mapping.md) - [Update a group-to-role mapping](https://docs.falkordb.com/enterprise/api-reference/endpoints/rbac/update-a-group-to-role-mapping.md) - [Delete a group-to-role mapping](https://docs.falkordb.com/enterprise/api-reference/endpoints/rbac/delete-a-group-to-role-mapping.md) - [Get comprehensive system diagnostics](https://docs.falkordb.com/enterprise/api-reference/endpoints/diagnostics/get-comprehensive-system-diagnostics.md) - [Export diagnostics data as downloadable JSON file](https://docs.falkordb.com/enterprise/api-reference/endpoints/diagnostics/export-diagnostics-data-as-downloadable-json-file.md) - [Export a compact support diagnostics package for FalkorDB support](https://docs.falkordb.com/enterprise/api-reference/endpoints/diagnostics/export-a-compact-support-diagnostics-package-for-falkordb-support.md) - [Check system health status](https://docs.falkordb.com/enterprise/api-reference/endpoints/diagnostics/check-system-health-status.md) - [Get license status and current resource usage](https://docs.falkordb.com/enterprise/api-reference/endpoints/licensing/get-license-status-and-current-resource-usage.md) - [Activate FalkorDB Enterprise with a signed license](https://docs.falkordb.com/enterprise/api-reference/endpoints/licensing/activate-falkordb-enterprise-with-a-signed-license.md) - [Get system-wide metrics including CPU, memory, and cluster stats](https://docs.falkordb.com/enterprise/api-reference/endpoints/metrics/get-system-wide-metrics-including-cpu-memory-and-cluster-stats.md) - [Search across clusters, backups, and users](https://docs.falkordb.com/enterprise/api-reference/endpoints/search/search-across-clusters-backups-and-users.md): Search across clusters, backups, and users. Results are restricted to what the caller has read/list permissions for. Filtering is in-memory because Kubernetes does not support wildcard name searches - only metadata fields (name, namespace, labels) are matched. - [List all clusters](https://docs.falkordb.com/enterprise/api-reference/endpoints/clusters/list-all-clusters.md) - [Create a new FalkorDB cluster](https://docs.falkordb.com/enterprise/api-reference/endpoints/clusters/create-a-new-falkordb-cluster.md) - [Get a specific cluster](https://docs.falkordb.com/enterprise/api-reference/endpoints/clusters/get-a-specific-cluster.md) - [Delete a cluster](https://docs.falkordb.com/enterprise/api-reference/endpoints/clusters/delete-a-cluster.md) - [Update an existing cluster](https://docs.falkordb.com/enterprise/api-reference/endpoints/clusters/update-an-existing-cluster.md) - [Retrieve the JSON schema (openAPIV3Schema) for the Cluster custom resource definition](https://docs.falkordb.com/enterprise/api-reference/endpoints/clusters/retrieve-the-json-schema-openapiv3schema-for-the-cluster-custom-resource-definition.md) - [Create a new FalkorDB cluster from a raw YAML manifest](https://docs.falkordb.com/enterprise/api-reference/endpoints/clusters/create-a-new-falkordb-cluster-from-a-raw-yaml-manifest.md) - [Get the raw YAML of a cluster custom resource](https://docs.falkordb.com/enterprise/api-reference/endpoints/clusters/get-the-raw-yaml-of-a-cluster-custom-resource.md) - [Replace a cluster custom resource from YAML](https://docs.falkordb.com/enterprise/api-reference/endpoints/clusters/replace-a-cluster-custom-resource-from-yaml.md) - [List all KubeBlocks OpsRequests for a cluster](https://docs.falkordb.com/enterprise/api-reference/endpoints/clusters/list-all-kubeblocks-opsrequests-for-a-cluster.md) - [Return audit log events for a cluster](https://docs.falkordb.com/enterprise/api-reference/endpoints/clusters/return-audit-log-events-for-a-cluster.md) - [List all pods for a specific cluster](https://docs.falkordb.com/enterprise/api-reference/endpoints/clusters/list-all-pods-for-a-specific-cluster.md) - [Get logs from a specific pod](https://docs.falkordb.com/enterprise/api-reference/endpoints/clusters/get-logs-from-a-specific-pod.md) - [Stream logs from a specific pod using Server-Sent Events](https://docs.falkordb.com/enterprise/api-reference/endpoints/clusters/stream-logs-from-a-specific-pod-using-server-sent-events.md) - [Get aggregated metrics for all pods in a cluster](https://docs.falkordb.com/enterprise/api-reference/endpoints/clusters/get-aggregated-metrics-for-all-pods-in-a-cluster.md) - [Get Prometheus metrics from a pod parsed into structured JSON](https://docs.falkordb.com/enterprise/api-reference/endpoints/clusters/get-prometheus-metrics-from-a-pod-parsed-into-structured-json.md): Get Prometheus metrics from a pod parsed into structured JSON. Each entry has name, help, type, and samples with labels and values. - [Stream parsed Prometheus pod metrics as Server-Sent Events](https://docs.falkordb.com/enterprise/api-reference/endpoints/clusters/stream-parsed-prometheus-pod-metrics-as-server-sent-events.md): Stream parsed Prometheus pod metrics as Server-Sent Events. Each event contains the same payload as GET /:name/pods/:podName/metrics. - [Stream aggregated cluster metrics (CPU & memory) as Server-Sent Events](https://docs.falkordb.com/enterprise/api-reference/endpoints/clusters/stream-aggregated-cluster-metrics-cpu-&-memory-as-server-sent-events.md): Stream aggregated cluster metrics (CPU & memory) as Server-Sent Events. Each event contains the same fields as GET /:name/metrics. - [Upgrade a cluster FalkorDB version and/or addon ComponentDefinition](https://docs.falkordb.com/enterprise/api-reference/endpoints/clusters/upgrade-a-cluster-falkordb-version-andor-addon-componentdefinition.md) - [Get connection credentials (hostname, port, username, password) for a cluster](https://docs.falkordb.com/enterprise/api-reference/endpoints/clusters/get-connection-credentials-hostname-port-username-password-for-a-cluster.md) - [Get Redis runtime configuration (redis.conf) for a cluster](https://docs.falkordb.com/enterprise/api-reference/endpoints/clusters/get-redis-runtime-configuration-redisconf-for-a-cluster.md) - [Cleanup expired backups for a specific cluster](https://docs.falkordb.com/enterprise/api-reference/endpoints/backups/cleanup-expired-backups-for-a-specific-cluster.md) - [List all backups for a specific cluster](https://docs.falkordb.com/enterprise/api-reference/endpoints/backups/list-all-backups-for-a-specific-cluster.md) - [Create a new backup](https://docs.falkordb.com/enterprise/api-reference/endpoints/backups/create-a-new-backup.md) - [Get a specific backup](https://docs.falkordb.com/enterprise/api-reference/endpoints/backups/get-a-specific-backup.md) - [Delete a backup](https://docs.falkordb.com/enterprise/api-reference/endpoints/backups/delete-a-backup.md) - [List all OpsRequests for a cluster](https://docs.falkordb.com/enterprise/api-reference/endpoints/cluster-operations/list-all-opsrequests-for-a-cluster.md) - [Get a specific OpsRequest](https://docs.falkordb.com/enterprise/api-reference/endpoints/cluster-operations/get-a-specific-opsrequest.md) - [Delete an OpsRequest](https://docs.falkordb.com/enterprise/api-reference/endpoints/cluster-operations/delete-an-opsrequest.md) - [Restart cluster component pods one-by-one with a rolling restart](https://docs.falkordb.com/enterprise/api-reference/endpoints/cluster-operations/restart-cluster-component-pods-one-by-one-with-a-rolling-restart.md) - [Start a previously stopped cluster](https://docs.falkordb.com/enterprise/api-reference/endpoints/cluster-operations/start-a-previously-stopped-cluster.md) - [Gracefully stop all pods in the cluster](https://docs.falkordb.com/enterprise/api-reference/endpoints/cluster-operations/gracefully-stop-all-pods-in-the-cluster.md) - [Update runtime configuration parameters (Reconfiguring)](https://docs.falkordb.com/enterprise/api-reference/endpoints/cluster-operations/update-runtime-configuration-parameters-reconfiguring.md) - [Promote a replica to primary (Switchover)](https://docs.falkordb.com/enterprise/api-reference/endpoints/cluster-operations/promote-a-replica-to-primary-switchover.md) - [Set the desired total replicas and/or shard count (HorizontalScaling)](https://docs.falkordb.com/enterprise/api-reference/endpoints/cluster-operations/set-the-desired-total-replicas-andor-shard-count-horizontalscaling.md) - [Adjust CPU and memory requests/limits (VerticalScaling)](https://docs.falkordb.com/enterprise/api-reference/endpoints/cluster-operations/adjust-cpu-and-memory-requestslimits-verticalscaling.md) - [Expand PVC storage size (VolumeExpansion)](https://docs.falkordb.com/enterprise/api-reference/endpoints/cluster-operations/expand-pvc-storage-size-volumeexpansion.md) - [List backup policies for a specific cluster](https://docs.falkordb.com/enterprise/api-reference/endpoints/backup-policies/list-backup-policies-for-a-specific-cluster.md) - [Create a new backup policy](https://docs.falkordb.com/enterprise/api-reference/endpoints/backup-policies/create-a-new-backup-policy.md) - [Get a specific backup policy](https://docs.falkordb.com/enterprise/api-reference/endpoints/backup-policies/get-a-specific-backup-policy.md) - [Delete a backup policy](https://docs.falkordb.com/enterprise/api-reference/endpoints/backup-policies/delete-a-backup-policy.md) - [List all backup schedules for a specific cluster](https://docs.falkordb.com/enterprise/api-reference/endpoints/backup-schedules/list-all-backup-schedules-for-a-specific-cluster.md) - [Create a new backup schedule](https://docs.falkordb.com/enterprise/api-reference/endpoints/backup-schedules/create-a-new-backup-schedule.md) - [Get a specific backup schedule](https://docs.falkordb.com/enterprise/api-reference/endpoints/backup-schedules/get-a-specific-backup-schedule.md) - [Delete a backup schedule](https://docs.falkordb.com/enterprise/api-reference/endpoints/backup-schedules/delete-a-backup-schedule.md) - [Update an existing backup schedule](https://docs.falkordb.com/enterprise/api-reference/endpoints/backup-schedules/update-an-existing-backup-schedule.md) - [List all restores for a specific cluster](https://docs.falkordb.com/enterprise/api-reference/endpoints/restores/list-all-restores-for-a-specific-cluster.md) - [Create a new restore](https://docs.falkordb.com/enterprise/api-reference/endpoints/restores/create-a-new-restore.md) - [Get a specific restore](https://docs.falkordb.com/enterprise/api-reference/endpoints/restores/get-a-specific-restore.md) - [Delete a restore](https://docs.falkordb.com/enterprise/api-reference/endpoints/restores/delete-a-restore.md) - [Clone a cluster from a full backup by creating a new cluster with the restore annotation](https://docs.falkordb.com/enterprise/api-reference/endpoints/restores/clone-a-cluster-from-a-full-backup-by-creating-a-new-cluster-with-the-restore-annotation.md) - [GraphRAG SDK](https://docs.falkordb.com/graphrag/index.md): The most accurate Graph RAG framework. Build knowledge graphs from documents and query them with natural language, on FalkorDB. - [Getting Started](https://docs.falkordb.com/graphrag/getting-started.md): A step-by-step tutorial for building a knowledge graph from documents and querying it with natural language. - [Architecture](https://docs.falkordb.com/graphrag/architecture.md): How the strategy-based ingestion and retrieval pipelines fit together. - [Configuration](https://docs.falkordb.com/graphrag/configuration.md): Comprehensive reference for every configurable component, its parameters, defaults, and usage. - [Ingestion](https://docs.falkordb.com/graphrag/ingestion.md): How documents become a knowledge graph through the 9-step ingestion pipeline. - [Extraction](https://docs.falkordb.com/graphrag/extraction.md): How raw text chunks are turned into entities and the relationships between them. - [Retrieval](https://docs.falkordb.com/graphrag/retrieval.md): How questions get answered using multiple parallel retrieval paths. - [Storage](https://docs.falkordb.com/graphrag/storage.md): How GraphStore, VectorStore, and EntityDeduplicator persist data in FalkorDB. - [Graph Schema](https://docs.falkordb.com/graphrag/graph-schema.md): The node types, edges, properties, and indexes that make up the knowledge graph. - [Ontology Discovery](https://docs.falkordb.com/graphrag/ontology-discovery.md): Bootstrap an ontology from a corpus and propose schema additions as new documents arrive. - [Ontology Evolution](https://docs.falkordb.com/graphrag/ontology-evolution.md): Safely evolve the schema of an already-populated knowledge graph. - [Incremental Updates](https://docs.falkordb.com/graphrag/incremental-updates.md): Update, delete, and re-index documents in an existing graph without a full re-ingest. - [Strategy Reference](https://docs.falkordb.com/graphrag/strategies.md): Every swappable strategy ABC and its built-in implementations. - [Providers](https://docs.falkordb.com/graphrag/providers.md): Configure LLM and embedder providers, including LiteLLM and OpenRouter. - [API Reference](https://docs.falkordb.com/graphrag/api-reference.md): Complete reference for every public class and method exported by graphrag_sdk. - [Benchmark](https://docs.falkordb.com/graphrag/benchmark.md): GraphRAG-SDK results on GraphRAG-Bench, with full methodology and configuration. ## OpenAPI Specs - [admin-server](https://docs.falkordb.com/enterprise/api-reference/admin-server.json)