# Migrate Neo4j to FalkorDB

> Extract data from Neo4j to CSV and load it into FalkorDB

- Skill: `falkordb/migrate-neo4j-to-falkordb` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add falkordb/migrate-neo4j-to-falkordb`
- Raw SKILL.md: https://api.skillmd.com/api/skills/falkordb/migrate-neo4j-to-falkordb/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Data & Analytics
- Author: falkordb (https://skillmd.com/u/falkordb)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/falkordb/migrate-neo4j-to-falkordb

---


# Migrate Neo4j to FalkorDB

Migrate graph database contents from Neo4j to FalkorDB using the extractor and loader scripts.

## Usage

Use `neo4j_to_csv_extractor.py` to extract nodes and edges to CSV format, and then load them into FalkorDB using `falkordb_csv_loader.py` (or FalkorDB-Loader-RS).

## Example

```bash
# 1. Extract from Neo4j
python3 neo4j_to_csv_extractor.py \
  --uri neo4j://localhost:7687 \
  --username neo4j \
  --password secret \
  --database movies

# 2. Load into FalkorDB (Assuming CSV outputs are generated in 'csv_output' directory)
python3 falkordb_csv_loader.py \
  --config migrate_config.json \
  --dir csv_output
```

## Notes

- The process migrates nodes, edges, constraints, and indexes.
- A template config file can be generated with `--generate-template` to modify how labels and properties are represented.
- Works without requiring APOC plugins in Neo4j.

