Graph databases

TigerGraph

A complete, distributed, parallel graph computing platform supporting web-scale data analytics in real-time.

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