This document discusses using Neo4j graph databases for projects instead of traditional SQL databases. It notes that graph databases better model complex relationships, scale to large amounts of data more efficiently, and allow for faster querying of connected data through graph traversal compared to SQL databases which require complex joins. Examples are provided showing how queries involving friends of friends or finding connection paths between characters can be done more simply and quickly using the Cypher query language in Neo4j compared to equivalent SQL queries. A demo is also promised to illustrate these benefits hands-on.