Search⌘ K

Project Overview

Explore how to set up an Elixir umbrella application to organize multiple graph projects, create a graph store for saving graphs and queries, and build common service interfaces for interacting with various graph databases. This lesson guides you in preparing the foundation for working with diverse graph models and querying them effectively within the Elixir ecosystem.

We'll cover the following...

We'll explore some of the graph packages that currently exist in the Elixir ecosystem. We'll also develop a set of applications to drill down into the various graph models. We’ll build native Elixir graph models with the libgraph package, and we’ll query remote graph databases of different flavors:

  • We'll query property graphs with bolt_sips.

  • We'll query RDF graphs with sparql_client.

  • We'll query TinkerPop graphs with gremlex.

  • We'll query Dgraph graphs with dlex. ...

Our plan