What is a graph database?

Concetti NoSQL

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
Concetti NoSQL

Graph databases - parts of a graph

  • Vertices/nodes
  • Edges

Picture of a graph with two nodes.

Concetti NoSQL

Graph databases - parts of a graph

  • Vertices/nodes
  • Edges/links/arcs

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

Concetti NoSQL

Graph databases - nodes

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

Nodes with users.

Concetti NoSQL

Graph databases - nodes

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

Nodes with users and their properties.

Concetti NoSQL

Graph databases - edges

  • Connect the nodes
  • Define the relationships between the nodes

Nodes connected by edges.

Concetti NoSQL

Graph databases - edges

  • Connect the nodes
  • Define the relationships between the nodes

Nodes connected by edges with edges relationships.

Concetti NoSQL

Graph databases - edges

  • Connect the nodes
  • Define the relationships between the nodes

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

Concetti NoSQL

Graph databases - types of edges

  • Directed:
    • Specific direction

Picture of a directed graph.

Concetti NoSQL

Graph databases - types of edges

  • Undirected:
    • No direction
    • The relationship is mutual

Picture of an undirected graph.

Concetti NoSQL

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.
Concetti NoSQL

Popular graph databases

Logos of some popular graph databases

Concetti NoSQL

Let's practice!

Concetti NoSQL

Preparing Video For Download...