Search⌘ K

Set up a Graph Service

Explore how to build a tailored graph service API in Elixir that wraps the Gremlex client to simplify graph querying with Gremlin. Understand how to define basic graph service functions, introspect graph data, and execute Gremlin queries interactively using IEx.

We’ll layer our own graph service API over the Gremlex API so that we can focus on the Gremlin query language itself and not be concerned with the details of any particular package API.

The other reason for defining our own API is to achieve certain brevity because we are particularly focused on querying graphs interactively with IEx.

Graph API

...