Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/brucify/sup2neo4j
https://github.com/brucify/sup2neo4j
Last synced: 6 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 (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-12-08T15:12:48.000Z (11 months ago)
- Last Synced: 2023-12-08T16:28:42.874Z (11 months ago)
- Language: Shell
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- 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;
```