Collecting my attempts to improve at tech, art, and life

Neo4j

Does any of this enlighten, entertain, or otherwise please you? Please consider a Tip. Every little bit helps!

I last updated this page

a Graph Database server

Five flavors: community, enterprise, and three flavors of hosted

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