What problem does it solve?
Bulk-importing structured data into Neo4j is error-prone and can easily create duplicates, type issues, constraint problems, or slow pipelines if you choose the wrong ingestion method.
Core Features & Use Cases
- Choose the right import path: LOAD CSV with CALL IN TRANSACTIONS for online loads, APOC load helpers when available, and neo4j-admin database import full/incremental for offline bulk loading.
- Production-grade guardrails: pre-import constraint ordering, primary-only write validation, UTF-8 and row-count checks, and post-import validation including index population checks.
- Reliable batching and error handling: CALL IN TRANSACTIONS with ON ERROR modes (CONTINUE/BREAK/FAIL/RETRY) plus optional concurrent batching for large datasets.
- Scope fit: designed for structured CSV/JSON/Parquet imports (not unstructured document/PDF pipelines, not live MERGE/CREATE app write patterns, not neo4j-admin backup/restore/config).
Quick Start
Ask your agent to import your dataset by instructing it to create uniqueness constraints first, then run LOAD CSV or neo4j-admin based on your data size and deployment type, and finally verify counts and index/constraint readiness.