https://github.com/brucify/sup2neo4j
https://github.com/brucify/sup2neo4j
Last synced: 22 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/brucify/sup2neo4j
- Owner: brucify
- License: apache-2.0
- Created: 2023-05-08T12:05:58.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-12-08T15:12:48.000Z (over 1 year ago)
- Last Synced: 2025-02-23T03:46:26.152Z (5 months ago)
- Language: Shell
- Size: 10.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# sup2neo4j
## Start neo4j
```bash
$ docker run \
--publish=7474:7474 --publish=7687:7687 \
--volume=$PWD/data \
--env NEO4J_AUTH=neo4j/password \
neo4j:latest
```## Display all
```cyp
MATCH (n) RETURN n;
```## Delete all
```cyp
MATCH ()-[r]->() DELETE r; MATCH (n) DELETE n;
```