Graph databases
- cayley An open-source graph database
- List of Graph Database Management Systems
- HyperGraphDB Documentation
HyperGraphDB
is a general purpose, extensible, portable, distributed, embeddable, open-source data storage mechanism. It is a graph database designed specifically for artificial intelligence and semantic web projects, it can also be used as an embedded object-oriented database for projects of all sizes.- https://slashdot.org/software/p/HyperGraphDB/alternatives
Trinity
and graph engine- graph db landscape 2013 pdf
- Modelling Data with Hypergraphs. A closer look at
Grakn
Labs hypergraph data model. 2017 blog - Hypergraph wiki & kobrix
TigerGraph
A complete, distributed, parallel graph computing platform supporting web-scale data analytics in real-time.
- doc RESTful API User Guide, cors, yt playlists
- integrations: REST API server, c# connector, TigerGraph.NET
- host tgcloud
- GSQL Language Reference 3.6
- Built-in Endpoints JSON Catalog
Neo4j
install
Neo4j Enterprise 4.4.8 for Developers
How-To: Run Neo4j in Docker
docker pull neo4j:4.4.8-enterprise
docker run --name testneo4j448e -p 7474:7474 -p 7687:7687 -d --env NEO4J_AUTH=neo4j/s3cr3t neo4j:4.4.8-enterprise --env=NEO4J_ACCEPT_LICENSE_AGREEMENT=yes
docker stop testneo4j448e
docker restart testneo4j448e
# then open http://localhost:7474 to connect with Neo4j Browser
docker pull neo4j:4.4.8-community
docker run --name testneo4j448c -p 7474:7474 -p 7687:7687 -d --env NEO4J_AUTH=neo4j/secr3T~ neo4j:4.4.8-community
intro
Neo4j Graph Platform
model
Graph Modeling Guidelines
Graph Data Modeling
Neo4j - Building Blocks
Modelling Data in Neo4j: Bidirectional Relationships 2013
neo4j/cypher: Aggregating relationships within a path 2013
.net
.net driver 4.4.0
Using Neo4j from .NET
sample
Guide: Example Datasets
Managing Multiple Databases in Neo4j
Built-in Movie Graph Example home, src