What is a graph database?

NoSQL Concepts

Miriam Antona

Software engineer

Graph databases - overview

  • Treat data and its relationships with the same importance
  • Based on graph theory
    • branch of mathematics
    • studies graphs for modeling the relationships between objects
NoSQL Concepts

Graph databases - parts of a graph

  • Vertices/nodes
  • Edges

Picture of a graph with two nodes.

NoSQL Concepts

Graph databases - parts of a graph

  • Vertices/nodes
  • Edges/links/arcs

Picture of a graph with two nodes connected by an edge.

NoSQL Concepts

Graph databases - nodes

  • Represent entities (users, cities, airports, employees...)
  • Have properties

Nodes with users.

NoSQL Concepts

Graph databases - nodes

  • Represent entities (users, cities, airports, employees...)
  • Have properties

Nodes with users and their properties.

NoSQL Concepts

Graph databases - edges

  • Connect the nodes
  • Define the relationships between the nodes

Nodes connected by edges.

NoSQL Concepts

Graph databases - edges

  • Connect the nodes
  • Define the relationships between the nodes

Nodes connected by edges with edges relationships.

NoSQL Concepts

Graph databases - edges

  • Connect the nodes
  • Define the relationships between the nodes

Nodes connected by edges, with edges' relationships, and properties.

NoSQL Concepts

Graph databases - types of edges

  • Directed:
    • Specific direction

Picture of a directed graph.

NoSQL Concepts

Graph databases - types of edges

  • Undirected:
    • No direction
    • The relationship is mutual

Picture of an undirected graph.

NoSQL Concepts

Graph databases - queries

  • Traversing the graph
  • Examples:
    • Get all the users that Ben follows
    • Get when Carol started following Shui
    • Get the shortest path from one city to another
  • Path: set of nodes and edges across a graph
  • Query languages: Cypher, Gremlin, etc.
NoSQL Concepts

Popular graph databases

Logos of some popular graph databases

NoSQL Concepts

Let's practice!

NoSQL Concepts

Preparing Video For Download...