Do More With Your Graphs

Create knowledge graph applications with less effort

Grence is an ergonomic framework for Developers to enable the storage, versioning and usage of knowledge graphs.

preview
1

Enable it.

Add graph support to your repository with a single command.

git-graph

Repository configured!
Terminal
git graph install ┌ Setting up git-graph◇ Project name│ my-graphs◆ Choose a graph file type│ ● Diamond│ ○ PG-JSONL
2

Create it.

Create graphs , with automation, tools or by hand.

{"type":"node","id":"alice","labels":["person"],"properties":{"age":[34],"name":["Alice"]}}
{"type":"node","id":"bob","labels":["person"],"properties":{"age":[32],"name":["Bob"]}}
 
{"type":"node","id":"luna","labels":["dog"],"properties":{"cute":[true],"name":["Luna"]}}
 
{"type":"edge","from":"alice","to":"bob","labels":["friends"],"properties":{"since":[2020]},"undirected":true}
 
{"type":"edge","from":"alice","to":"luna","labels":["owns"],"properties":{}}
{"type":"edge","from":"bob","to":"luna","labels":["owns"],"properties":{}}
 
primekg.jsonl
who-graph.diamond
3

Share it.

Share your graph with the world and invite others to collaborate.