a Graph Database server
Five flavors: community, enterprise, and three flavors of hosted
- Neo4j Graph Database & Analytics | Graph Database Management System
- Developer Center - Graph Database & Analytics
- The Neo4j Operations Manual v5 - Operations Manual
Truncating a Neo4j database
In Enterprise Edition or Neo4j Desktop:
Code Sample
:use system
CREATE OR REPLACE DATABASE notes
In Community Edition you’re limited to DELETE. DETACH DELETE also detaches (deletes) the edges
Code Sample
MATCH (n)
DETACH DELETE n LIMIT 1000000
RETURN n
Python Neo4j client libraries
- neo4j · PyPI
- The official low-level API bridge to Neo4j for Python clients
- Neomodel
- an Object Graph Mapper
- ontolocy/neontology
- Object-graph mapper for using Pydantic with Neo4j
- PyNeoInstance
- Provides a user-friendly API for Cypher queries involving Pandas and Exploratory Data Analysis