Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/brucify/sup2neo4j


https://github.com/brucify/sup2neo4j

Last synced: 6 days ago
JSON representation

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;
```