Graph Databases
- cayley 1 An open-source graph database
- List of Graph Database Management Systems 2
- HyperGraphDB Documentation 3
HyperGraphDBis 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 4.- slashdot.org: Alternatives 5
Trinityand graph engine 6- graph db landscape 2013 pdf 7
- Modelling Data with Hypergraphs. A closer look at
GraknLabs hypergraph data model. 2017 blog 8 - Hypergraph wiki 9 & kobrix 10
TigerGraph
A complete, distributed, parallel graph computing platform supporting web-scale data analytics in real-time.
- doc RESTful API User Guide 11, cors 12, yt playlists 13
- integrations: REST API server 14, c# connector 15, TigerGraph.NET 16
- host tgcloud 17
- GSQL Language Reference 3.6 18
- Built-in Endpoints JSON Catalog 19
Neo4j
install
Neo4j Enterprise 4.4.8 20 for Developers
How-To 21: Run Neo4j in Docker 22
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 23
model
Graph Modeling 24 Guidelines
Graph Data Modeling 25
Neo4j - Building Blocks 26
Modelling Data in Neo4j: Bidirectional Relationships 2013 27
neo4j/cypher: Aggregating relationships within a path 2013 28
.net
.net driver 4.4.0 29
Using Neo4j from .NET 30
sample
Guide 31: Example Datasets
Managing Multiple Databases 32 in Neo4j
Built-in Movie Graph Example home 33, src 34