https://github.com/paoliniluis/metabase-feature-graph
Neo4J database to map all Metabase features
https://github.com/paoliniluis/metabase-feature-graph
Last synced: 4 days ago
JSON representation
Neo4J database to map all Metabase features
- Host: GitHub
- URL: https://github.com/paoliniluis/metabase-feature-graph
- Owner: paoliniluis
- Created: 2023-04-20T02:16:05.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-04-20T02:17:32.000Z (about 2 years ago)
- Last Synced: 2025-06-22T11:11:27.427Z (11 days ago)
- Language: Cypher
- Size: 3.91 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-metabase - Metabase Feature Graph
- awesome-metabase - Metabase Feature Graph
README
# What's this
Trying to map all Metabase concepts into a Neo4j database to build test cases
## How to run
- docker compose up (although it will just start the DB)
- then go to http://localhost:7474/ and click on "connect"
- enter what's in the "features.cypher" file in the terminal and run it
- then run the command on "how to see the nodes visually"## How to delete the DB
```
MATCH (n)
DETACH DELETE n;
```## How to see the nodes visually
```
MATCH (n)-[r]->(m) RETURN n,r,m;
```