Neo4j is a widely usedgraphdb that supports OpenCypher syntax. It can be run locally using Docker.
Running On Macbook Pro M4
Due to a problem with java on M4 machines it is necessary to turn on extra environment options when running on M4 macs:
podman run -it --user neo4j \
--publish=7474:7474 \
--publish=7687:7687 \
-e "_JAVA_OPTIONS=-XX:UseSVE=0" \
neo4j:2025.02.0
Deleting everything from a neo4j db using OpenCypher
MATCH (n) DETACH DELETE n