You don't need a graph database: Modeling graphs and trees in Postgres
1–2 of 2 posts
Re: You don't need a graph database: Modeling graphs and trees in Postgres
#2While there are dedicated graph databases, like Neo4j, PostgreSQL might be all you need. Keep your production system complexity low.
The article shows how to write Postgres queries that: * Traverse a graph. * Detect cycles. * Find the shortest path.